[Python-checkins] Remove space. (GH-97807)

miss-islington webhook-mailer at python.org
Mon Oct 3 20:12:47 EDT 2022


https://github.com/python/cpython/commit/9e8b86de4e7a65b6fc6389caf4fa506ebcf538f6
commit: 9e8b86de4e7a65b6fc6389caf4fa506ebcf538f6
branch: main
author: Benjamin Peterson <benjamin at python.org>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-10-03T17:12:36-07:00
summary:

Remove space. (GH-97807)



Automerge-Triggered-By: GH:benjaminp

files:
M Lib/test/test_time.py

diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
index 884b14231f57..02cc3f43a66a 100644
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -848,7 +848,7 @@ def convert_values(ns_timestamps):
         # 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
 



More information about the Python-checkins mailing list