Skip to content

Commit

Permalink
Add trailing comment before end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser committed May 31, 2024
1 parent b584ee7 commit 53b7f53
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ def foo(self) -> None:
... # comment 5
def baz(self) -> None:
return None

def foo(self) -> None: ...
# comment 5
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ def foo(self) -> None:
... # comment 5
def baz(self) -> None:
return None
def foo(self) -> None: ...
# comment 5
```

## Output
Expand Down Expand Up @@ -65,4 +68,10 @@ def baz(self) -> None:
def foo(self) -> None: ... # comment 5
def baz(self) -> None:
return None
def foo(self) -> None: ...
# comment 5
```

0 comments on commit 53b7f53

Please sign in to comment.