Skip to content

Commit c03b79c

Browse files
author
brentru
committed
fixes for time/dt
1 parent 3cf6b40 commit c03b79c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_datetime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# SPDX-License-Identifier: Python-2.0
1010
# Implements a subset of https://github.com/python/cpython/blob/master/Lib/test/datetimetester.py
1111
# NOTE: This test is based off CPython and therefore linting is disabled within this file.
12-
# pylint:disable=invalid-name, no-member, cell-var-from-loop, unused-argument, no-self-use, too-few-public-methods, raise-missing-from, too-many-statements, too-many-lines, undefined-variable, eval-used, import-outside-toplevel, redefined-outer-name, too-many-locals, reimported, protected-access, wrong-import-position, consider-using-enumerate, wrong-import-order
12+
# pylint:disable=invalid-name, no-member, cell-var-from-loop, unused-argument, no-self-use, too-few-public-methods, raise-missing-from, too-many-statements, too-many-lines, undefined-variable, eval-used, import-outside-toplevel, redefined-outer-name, too-many-locals, reimported, protected-access, wrong-import-position, consider-using-enumerate, wrong-import-order, redefined-builtin, too-many-public-methods
1313
import sys
1414

1515
# CircuitPython subset implementation

tests/test_time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# SPDX-License-Identifier: Python-2.0
1010
# Implements a subset of https://github.com/python/cpython/blob/master/Lib/test/datetimetester.py
1111
# NOTE: This test is based off CPython and therefore linting is disabled within this file.
12-
# pylint:disable=invalid-name, no-member, cell-var-from-loop, unused-argument, no-self-use, too-few-public-methods, consider-using-enumerate, undefined-variable
12+
# pylint:disable=invalid-name, no-member, cell-var-from-loop, unused-argument, no-self-use, too-few-public-methods, consider-using-enumerate, undefined-variable, wrong-import-order, wrong-import-position
1313
# CircuitPython subset implementation
1414
import sys
1515

0 commit comments

Comments
 (0)