X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/475179a53af1948ca726de1b11d4cdbe2aa90e58..14ba1bf8b6248e6860ba6a0cb9468c4c1c25a102:/tests/comments.py diff --git a/tests/comments.py b/tests/comments.py index 42e42f5..8ce9ffe 100644 --- a/tests/comments.py +++ b/tests/comments.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# fmt: on # Some license here. # # Has many lines. Many, many lines. @@ -42,7 +43,7 @@ def function(default=None): # Explains why we use global state. -GLOBAL_STATE = {'a': a(1), 'b': a(2), 'c': a(3)} +GLOBAL_STATE = {"a": a(1), "b": a(2), "c": a(3)} # Another comment! @@ -75,7 +76,7 @@ async def wat(): result = await x.method1() # Comment after ending a block. if result: - print('A OK', file=sys.stdout) + print("A OK", file=sys.stdout) # Comment between things. print()