Commit 661440a9 authored by Jason R. Coombs's avatar Jason R. Coombs

Separate clauses onto different lines for clarity and consistency.

parent e0dcf2ea
......@@ -192,8 +192,11 @@ def _conflict_bail(VC_err, version):
def _unload_pkg_resources():
sys.meta_path = [importer for importer in sys.meta_path if
importer.__class__.__module__ != 'pkg_resources.extern']
sys.meta_path = [
importer
for importer in sys.meta_path
if importer.__class__.__module__ != 'pkg_resources.extern'
]
del_modules = [
name for name in sys.modules
if name.startswith('pkg_resources')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment