Skip to content

Commit 412bbf5

Browse files
committed
skpkg: flake8 fixes in setup.py
1 parent d0f61e8 commit 412bbf5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def get_objcryst_libraries():
5353
conda_prefix = os.environ.get("CONDA_PREFIX")
5454
if not conda_prefix:
5555
raise EnvironmentError(
56-
"CONDA_PREFIX is not set. Please install ObjCryst using conda and activate the environment."
56+
"CONDA_PREFIX is not set. "
57+
"Please install ObjCryst using conda and activate the environment."
5758
)
5859
if os.name == "nt":
5960
libdir = Path(conda_prefix) / "Library" / "lib"
@@ -65,7 +66,8 @@ def get_objcryst_libraries():
6566
stem = Path(fn).stem
6667
if "objcryst" not in stem.lower():
6768
continue
68-
# strip a leading "lib" so that setuptools does -lObjCryst, not -llibObjCryst
69+
# strip a leading "lib"
70+
# so that setuptools does -lObjCryst, not -llibObjCryst
6971
if os.name != "nt" and stem.startswith("lib"):
7072
stem = stem[3:]
7173
libs.append(stem)

0 commit comments

Comments
 (0)