Skip to content

Commit 0e616d1

Browse files
committed
Fix types
1 parent ad742f3 commit 0e616d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

schema_salad/ref_resolver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
from StringIO import StringIO
1313
try:
1414
# python >3.3
15-
import pathlib
15+
import pathlib # type: ignore
1616
except:
17-
import pathlib2 as pathlib
17+
import pathlib2 as pathlib # type: ignore
1818

1919
from . import validate
2020
from .aslist import aslist

0 commit comments

Comments
 (0)