1from .config import ( ConfigTypeAttributes, Int, Path, # String, 2 # DEFAULT_TYPE_ATTRIBUTES, 3) 4 5result = 1 # A simple comment 6result = ( 1, ) # Another one 7 8result = 1 # type: ignore 9result = 1# This comment is talking about type: ignore 10square = Square(4) # type: Optional[Square] 11 12def function(a:int=42): 13 """ This docstring is already formatted 14 a 15 b 16 """ 17 # There's a NBSP + 3 spaces before 18 # And 4 spaces on the next line 19 pass 20 21# output 22from .config import ( 23 ConfigTypeAttributes, 24 Int, 25 Path, # String, 26 # DEFAULT_TYPE_ATTRIBUTES, 27) 28 29result = 1 # A simple comment 30result = (1,) # Another one 31 32result = 1 # type: ignore 33result = 1 # This comment is talking about type: ignore 34square = Square(4) # type: Optional[Square] 35 36 37def function(a: int = 42): 38 """This docstring is already formatted 39 a 40 b 41 """ 42 # There's a NBSP + 3 spaces before 43 # And 4 spaces on the next line 44 pass 45