]> 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:

[trivial] Simplify stdin handling
authorŁukasz Langa <lukasz@langa.pl>
Mon, 4 Jun 2018 18:06:38 +0000 (11:06 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Mon, 4 Jun 2018 18:06:38 +0000 (11:06 -0700)
black.py

index 730c64de0b1883ff42e906d90d6985d4ddec9b51..0dce397e768fee2973537f157b4903c3d858390d 100644 (file)
--- a/black.py
+++ b/black.py
@@ -260,11 +260,9 @@ def main(
             sources.extend(
                 gen_python_files_in_dir(p, root, include_regex, exclude_regex)
             )
-        elif p.is_file():
+        elif p.is_file() or s == "-":
             # if a file was explicitly given, we don't care about its extension
             sources.append(p)
-        elif s == "-":
-            sources.append(Path("-"))
         else:
             err(f"invalid path: {s}")