Skip to content

Commit 0ff0748

Browse files
committed
Reformat
1 parent f65e52d commit 0ff0748

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/portable_python/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,9 @@ def __init__(self, python_spec=None, modules=None, prefix=None):
222222
runez.abort("Please provide full desired version: %s is not good enough" % runez.red(python_spec))
223223

224224
self.python_spec = python_spec
225-
self.folders = PPG.get_folders(base=os.getcwd(), family=python_spec.family, version=python_spec.version, abi_suffix=python_spec.abi_suffix)
225+
self.folders = PPG.get_folders(
226+
base=os.getcwd(), family=python_spec.family, version=python_spec.version, abi_suffix=python_spec.abi_suffix
227+
)
226228
self.desired_modules = modules
227229
prefix = self.folders.formatted(prefix)
228230
self.prefix = prefix
@@ -237,7 +239,9 @@ def __init__(self, python_spec=None, modules=None, prefix=None):
237239
self.tarball_name = PPG.target.composed_basename(dest, extension=ext)
238240

239241
else:
240-
self.tarball_name = PPG.target.composed_basename(python_spec.family, python_spec.version, abi_suffix=python_spec.abi_suffix, extension=ext)
242+
self.tarball_name = PPG.target.composed_basename(
243+
python_spec.family, python_spec.version, abi_suffix=python_spec.abi_suffix, extension=ext
244+
)
241245

242246
builder = PPG.family(python_spec.family).get_builder()
243247
self.python_builder = builder(self) # type: PythonBuilder

0 commit comments

Comments
 (0)