diff options
author | Benjamin Peterson <benjamin@python.org> | 2022-10-04 00:12:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 00:12:36 (GMT) |
commit | 9e8b86de4e7a65b6fc6389caf4fa506ebcf538f6 (patch) | |
tree | 45f3fa3b36a5c2987c5eec6bc21bad55c4b3e2b5 /Lib | |
parent | 231a905c5f4c29c04307b83577977a17d2e089ac (diff) | |
download | cpython-9e8b86de4e7a65b6fc6389caf4fa506ebcf538f6.zip cpython-9e8b86de4e7a65b6fc6389caf4fa506ebcf538f6.tar.gz cpython-9e8b86de4e7a65b6fc6389caf4fa506ebcf538f6.tar.bz2 |
Remove space. (GH-97807)
Automerge-Triggered-By: GH:benjaminp
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_time.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 884b142..02cc3f4 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -848,7 +848,7 @@ class CPyTimeTestCase: # test rounding ns_timestamps = self._rounding_values(use_float) valid_values = convert_values(ns_timestamps) - for time_rnd, decimal_rnd in ROUNDING_MODES : + for time_rnd, decimal_rnd in ROUNDING_MODES: with decimal.localcontext() as context: context.rounding = decimal_rnd |