Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Dec 2, 2022
1 parent 45b3621 commit 0691a8e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/samples/missing_import.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
"""
Multiline docstring
"""


def foo() -> str | None:
return "42"
4 changes: 4 additions & 0 deletions tests/samples/missing_import_fix.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""
Multiline docstring
"""
from __future__ import annotations


def foo() -> str | None:
return "42"

0 comments on commit 0691a8e

Please sign in to comment.