Skip to content

Commit

Permalink
Removed hidden import
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 committed Feb 2, 2024
1 parent 7d7e359 commit 2e8d4aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ephys_link.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ a = Analysis(
pathex=[],
binaries=[('src\\ephys_link\\resources', 'ephys_link\\resources')],
datas=[],
hiddenimports=['engineio.async_drivers.aiohttp', 'engineio.async_aiohttp'],
hiddenimports=['engineio.async_drivers.aiohttp'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
Expand Down
2 changes: 1 addition & 1 deletion src/ephys_link/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self):
self.sio.attach(self.app)

# Declare events
self.sio.on("connect", self.connect)
self.sio.on("connect",self.connect)
self.sio.on("disconnect", self.disconnect)
self.sio.on("get_version", self.get_version)
self.sio.on("get_manipulators", self.get_manipulators)
Expand Down

0 comments on commit 2e8d4aa

Please sign in to comment.