Skip to content

Commit

Permalink
docstring_parser type warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo59 committed Mar 29, 2024
1 parent e22217f commit 124d991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions great_expectations/compatibility/docstring_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
try:
import docstring_parser
except ImportError:
docstring_parser = DOCSTRING_PARSER_NOT_IMPORTED
docstring_parser = DOCSTRING_PARSER_NOT_IMPORTED # type: ignore[assignment]

Check warning on line 12 in great_expectations/compatibility/docstring_parser.py

View check run for this annotation

Codecov / codecov/patch

great_expectations/compatibility/docstring_parser.py#L12

Added line #L12 was not covered by tests

try:
from docstring_parser import DocstringStyle
except ImportError:
DocstringStyle = DOCSTRING_PARSER_NOT_IMPORTED
DocstringStyle = DOCSTRING_PARSER_NOT_IMPORTED # type: ignore[assignment,misc]

Check warning on line 17 in great_expectations/compatibility/docstring_parser.py

View check run for this annotation

Codecov / codecov/patch

great_expectations/compatibility/docstring_parser.py#L17

Added line #L17 was not covered by tests

0 comments on commit 124d991

Please sign in to comment.