aboutsummaryrefslogtreecommitdiffstats
path: root/test/helper_tools/typehints_for_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/helper_tools/typehints_for_options.py')
-rw-r--r--test/helper_tools/typehints_for_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper_tools/typehints_for_options.py b/test/helper_tools/typehints_for_options.py
index 8c7d006c..06e958f9 100644
--- a/test/helper_tools/typehints_for_options.py
+++ b/test/helper_tools/typehints_for_options.py
@@ -9,7 +9,7 @@ def print_typehints(opts):
for name, option in sorted(opts.items()):
print(
# For Python 3.6, we can just use "{}: {}".
- "{} = None # type: {}".format(
+ "{}: {} = None".format(
name,
{
int: "int",