Skip to content

Commit 76d8a0c

Browse files
(strict) mypy annotations for DataTable (#175)
* mypy annotations for DataTable * skip imports for strict check * typed-ast fixes
1 parent 6fd559a commit 76d8a0c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pytools/datatable.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"""
1212

1313

14-
class Row(Record):
14+
# type-ignore-reason: Record is untyped
15+
class Row(Record): # type: ignore[misc]
1516
pass
1617

1718

0 commit comments

Comments
 (0)