diff options
author | Yury Selivanov <yury@magic.io> | 2017-12-10 23:36:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-10 23:36:12 (GMT) |
commit | 6370f345e1d5829e1fba59cd695c8b82c5a8c620 (patch) | |
tree | ba648772068abc784cef9e7b2e0be159646d7514 /Lib/asyncio/__init__.py | |
parent | c4d9df5fd719ad08e68e0950ce22a80f43e4f35d (diff) | |
download | cpython-6370f345e1d5829e1fba59cd695c8b82c5a8c620.zip cpython-6370f345e1d5829e1fba59cd695c8b82c5a8c620.tar.gz cpython-6370f345e1d5829e1fba59cd695c8b82c5a8c620.tar.bz2 |
bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)
Diffstat (limited to 'Lib/asyncio/__init__.py')
-rw-r--r-- | Lib/asyncio/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/asyncio/__init__.py b/Lib/asyncio/__init__.py index 1ee1b25..dd6686d 100644 --- a/Lib/asyncio/__init__.py +++ b/Lib/asyncio/__init__.py @@ -1,5 +1,7 @@ """The asyncio package, tracking PEP 3156.""" +# flake8: noqa + import sys # This relies on each of the submodules having an __all__ variable. |