File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
import os
9
9
10
- import fastjsonschema # type:ignore[import]
10
+ import fastjsonschema # type:ignore[import-untyped ]
11
11
import jsonschema
12
12
from fastjsonschema import JsonSchemaException as _JsonSchemaException
13
13
from jsonschema import Draft4Validator as _JsonSchemaValidator
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def convert_datetime(val):
30
30
sqlite3 .register_converter ("datetime" , convert_datetime )
31
31
except ImportError :
32
32
try :
33
- from pysqlite2 import dbapi2 as sqlite3 # type:ignore[no-redef, import]
33
+ from pysqlite2 import dbapi2 as sqlite3 # type:ignore[no-redef, import-not-found ]
34
34
except ImportError :
35
35
sqlite3 = None # type:ignore[assignment]
36
36
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ nowarn = "test -W default {args}"
85
85
86
86
[tool .hatch .envs .typing ]
87
87
features = [" test" ]
88
- dependencies = [" mypy> =1.5 .1" ]
88
+ dependencies = [" mypy~ =1.6 " , " jupyter_core>=5.4 " , " traitlets>=5.11 .1" ]
89
89
[tool .hatch .envs .typing .scripts ]
90
90
test = " mypy --install-types --non-interactive {args}"
91
91
You can’t perform that action at this time.
0 commit comments