Skip to content

Commit 7d520b6

Browse files
authored
Add DateType (#188)
1 parent cfea3ce commit 7d520b6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

mypy_primer/projects.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,6 +1625,13 @@ def get_projects() -> list[Project]:
16251625
deps=["attrs", "flask", "aiohttp", "fastapi", "starlette"],
16261626
expected_success=("mypy", "pyright"),
16271627
),
1628+
Project(
1629+
location="https://github.com/glyph/DateType",
1630+
mypy_cmd="{mypy} {paths}",
1631+
pyright_cmd="{pyright} {paths}",
1632+
paths=["src"],
1633+
expected_success=("mypy",),
1634+
),
16281635
]
16291636
assert len(projects) == len({p.name for p in projects})
16301637
for p in projects:

0 commit comments

Comments
 (0)