Skip to content

Commit

Permalink
Add support for older python versions (6)
Browse files Browse the repository at this point in the history
Fix mypy tests
  • Loading branch information
dostuffthatmatters committed Aug 29, 2024
1 parent d758e03 commit 436a3ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ markers = [
[tool.mypy]
strict = true
implicit_reexport = true
warn_unused_ignores = false
plugins = ["pydantic.mypy"]

[tool.yapf]
Expand Down
2 changes: 1 addition & 1 deletion src/utils/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
try:
import tomllib # type: ignore
except ImportError:
import tomli as tomllib
import tomli as tomllib # type: ignore


def sdc_covers_the_full_day(
Expand Down

0 comments on commit 436a3ca

Please sign in to comment.