Commit 7f118aaa authored by stepshal's avatar stepshal

Fix continuation line unaligned for hanging indent.

parent fd3ff004
......@@ -542,19 +542,19 @@ class Distribution(_Distribution):
if self.packages:
self.packages = [
p for p in self.packages
if p != package and not p.startswith(pfx)
if p != package and not p.startswith(pfx)
]
if self.py_modules:
self.py_modules = [
p for p in self.py_modules
if p != package and not p.startswith(pfx)
if p != package and not p.startswith(pfx)
]
if self.ext_modules:
self.ext_modules = [
p for p in self.ext_modules
if p.name != package and not p.name.startswith(pfx)
if p.name != package and not p.name.startswith(pfx)
]
def has_contents_for(self, package):
......
......@@ -258,7 +258,7 @@ class AbstractSandbox:
def __init__(self):
self._attrs = [
name for name in dir(_os)
if not name.startswith('_') and hasattr(self, name)
if not name.startswith('_') and hasattr(self, name)
]
def _copy(self, source):
......
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