Skip to content

Commit

Permalink
linux
Browse files Browse the repository at this point in the history
  • Loading branch information
PauloRadatz committed Oct 10, 2024
1 parent f5147ca commit 09f8427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py_dss_interface/DSS.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, dll_folder_param=None, dll_by_user=None, print_dss_info=False

self.dll_file_path = os.path.join(self._dll_path, dll_by_user)
print(f'Final Path of DLL : {self.dll_file_path} For DEBUGGING')
self._dss_obj = ctypes.cdll.LoadLibrary(self.dll_file_path)
self._dss_obj = ctypes.cdll.LoadLibrary(str(self.dll_file_path))

self.started = bool(self._dss_obj)
if self.started:
Expand Down

0 comments on commit 09f8427

Please sign in to comment.