We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8bc98b commit 23ca22eCopy full SHA for 23ca22e
pyproject.toml
@@ -30,4 +30,7 @@ requires = ["poetry-core"]
30
build-backend = "poetry.core.masonry.api"
31
32
[tool.ruff]
33
-line-length = 120
+line-length = 120
34
+
35
+[tool.mypy]
36
+explicit_package_bases = true
tests/test_analyzers/test_commit_type.py
@@ -1,7 +1,7 @@
1
-import pytest
2
-
3
from datetime import date
4
+import pytest
5
from git_analytics.analyzers.commit_type import CommitTypeAnalyzer, _get_type_list
6
from tests.fakes import FAKE_COMMITS, FakeCommitSource
7
0 commit comments