X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0677a539370b296399854e427ce7df2955ecfe57..14ba1bf8b6248e6860ba6a0cb9468c4c1c25a102:/tests/comments.py diff --git a/tests/comments.py b/tests/comments.py index 3a39afd..8ce9ffe 100644 --- a/tests/comments.py +++ b/tests/comments.py @@ -43,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! @@ -76,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()