X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/475179a53af1948ca726de1b11d4cdbe2aa90e58..808754af18f1cea2444c6facf63f3a86952c5d44:/tests/comments.py?ds=sidebyside

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()