aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2018-04-16 07:35:20 +1200
committerGitHub <noreply@github.com>2018-04-16 07:35:20 +1200
commit5f74adc2df6d2a9452a9e3a6923fe05ba579e9e6 (patch)
treef1ba68e2dd5bcf6b673a32d91b468d767da86cdf /test
parent865a373bd34589543e381f1de2f4b46740965d7e (diff)
parent0e984e1442e735a6a3cee5170bead492b231d620 (diff)
downloadmitmproxy-5f74adc2df6d2a9452a9e3a6923fe05ba579e9e6.tar.gz
mitmproxy-5f74adc2df6d2a9452a9e3a6923fe05ba579e9e6.tar.bz2
mitmproxy-5f74adc2df6d2a9452a9e3a6923fe05ba579e9e6.zip
Merge pull request #3059 from obscure76/enh/issue-3053
fix Python 3.6 variable type annotations #3053
Diffstat (limited to 'test')
-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",