We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e74540 commit 35b75faCopy full SHA for 35b75fa
1 file changed
src/pylsl/lib/__init__.py
@@ -141,9 +141,7 @@ def find_liblsl_libraries(verbose=False):
141
env_libdir = os.path.join(sys.prefix, "lib")
142
for libprefix in ["", "lib"]:
143
for debugsuffix in ["", "-debug"]:
144
- path = os.path.join(
145
- env_libdir, libprefix + "lsl" + debugsuffix + libsuffix
146
- )
+ path = os.path.join(env_libdir, libprefix + "lsl" + debugsuffix + libsuffix)
147
if os.path.isfile(path):
148
yield path
149
0 commit comments