We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553338d commit 6ee0931Copy full SHA for 6ee0931
qtpy/tests/test_qtcore.py
@@ -16,9 +16,9 @@
16
)
17
from qtpy.tests.utils import not_using_conda
18
19
-NOW = datetime.now()
+_now = datetime.now()
20
# Make integer milliseconds; `floor` here, don't `round`!
21
-NOW = NOW.replace(microsecond=(NOW.microsecond // 1000 * 1000))
+NOW = _now.replace(microsecond=(_now.microsecond // 1000 * 1000))
22
23
24
def test_qtmsghandler():
0 commit comments