Skip to content

Commit 1003cf6

Browse files
committed
pep8 conformance
1 parent 6008cef commit 1003cf6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Utilities/bootstrap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@ def parse_manifest():
195195
pattern = re.compile(
196196
r'Target\(.*?name: "(.*?)",\n *dependencies: (\[.*?\])\)',
197197
re.DOTALL | re.MULTILINE)
198-
manifest_data = codecs.open(os.path.join(g_project_root, "Package.swift"), encoding='utf-8', errors='strict').read()
198+
manifest_data = codecs.open(os.path.join(g_project_root,
199+
"Package.swift"), encoding='utf-8',
200+
errors='strict').read()
199201

200202
def convert(match):
201203
name = match.group(1)

0 commit comments

Comments
 (0)