Skip to content

Commit 35b75fa

Browse files
committed
ruff format
1 parent 2e74540 commit 35b75fa

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/pylsl/lib/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,7 @@ def find_liblsl_libraries(verbose=False):
141141
env_libdir = os.path.join(sys.prefix, "lib")
142142
for libprefix in ["", "lib"]:
143143
for debugsuffix in ["", "-debug"]:
144-
path = os.path.join(
145-
env_libdir, libprefix + "lsl" + debugsuffix + libsuffix
146-
)
144+
path = os.path.join(env_libdir, libprefix + "lsl" + debugsuffix + libsuffix)
147145
if os.path.isfile(path):
148146
yield path
149147

0 commit comments

Comments
 (0)