Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: poetry update #1481

Merged
merged 16 commits into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ ignore_missing_imports = True
# Enable options equivalent to the --strict command line arg
warn_unused_configs = True
disallow_subclassing_any = True
disallow_any_generics = True

# numpy expects generic arguments for `numpy.ndarray` that default
# to `typing.Any` and we use those defaults all over the place.
disallow_any_generics = False
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@notmgsk I couldn't find any option that made more sense than this unfortunately


disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
Expand Down
Loading