Skip to content

Commit 52ce29d

Browse files
committed
Address lints
1 parent 8995523 commit 52ce29d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/portable_python/cpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from runez.pyenv import Version
99

1010
from portable_python import LOG, patch_file, patch_folder, PPG, PythonBuilder
11-
from portable_python.external.xcpython import Bdb, Bzip2, Gdbm, LibFFI, Openssl, Readline, Sqlite, Uuid, Xz, Zlib, Zstd, Mpdec
11+
from portable_python.external.xcpython import Bdb, Bzip2, Gdbm, LibFFI, Mpdec, Openssl, Readline, Sqlite, Uuid, Xz, Zlib, Zstd
1212
from portable_python.external.xtkinter import TkInter
1313
from portable_python.inspector import LibAutoCorrect, PythonInspector
1414

src/portable_python/external/xcpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ def _do_linux_compile(self):
466466
# "libdir=\\$(executable_path)/../lib")
467467
self.run_make("install", f"prefix={os.path.abspath(self.deps)}")
468468

469+
469470
class Mpdec(ModuleBuilder):
470471
"""
471472
Prevent falling back to bundled libmpdec (deprecated and scheduled for removal in Python 3.16)
@@ -496,7 +497,7 @@ def c_configure_args(self):
496497
yield config_args
497498

498499
else:
499-
pass # yield "--static"
500+
pass # yield "--static"
500501
yield "--disable-cxx"
501502

502503
def _do_linux_compile(self):

0 commit comments

Comments
 (0)