]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Set correct return statement for `is_type_comment` function (#929)
authorYurii Karabas <1998uriyyo@gmail.com>
Sun, 20 Oct 2019 14:52:07 +0000 (17:52 +0300)
committerŁukasz Langa <lukasz@langa.pl>
Sun, 20 Oct 2019 14:52:07 +0000 (16:52 +0200)
black.py

index 65545e9f21d69dea541eec99f5bfa85cf4cf44e6..d1e87a9fa987e658d2e544f99a0d4b23f7050615 100644 (file)
--- a/black.py
+++ b/black.py
@@ -2777,7 +2777,7 @@ def is_type_comment(leaf: Leaf, suffix: str = "") -> bool:
     Only returns true for type comments for now."""
     t = leaf.type
     v = leaf.value
-    return t in {token.COMMENT, t == STANDALONE_COMMENT} and v.startswith(
+    return t in {token.COMMENT, STANDALONE_COMMENT} and v.startswith(
         "# type:" + suffix
     )