mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
fix hound
This commit is contained in:
parent
c6609d0131
commit
58bdc2bcf9
1 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ PYTHONPATH # Path to ftrack_api and paths to all modules used in actions
|
|||
|
||||
|
||||
class FtrackServer:
|
||||
def __init__(self, handler_paths=[], server_type='action'):
|
||||
def __init__(self, handler_paths=None, server_type='action'):
|
||||
"""
|
||||
- 'type' is by default set to 'action' - Runs Action server
|
||||
- enter 'event' for Event server
|
||||
|
|
@ -50,7 +50,7 @@ class FtrackServer:
|
|||
self.stopped = True
|
||||
self.is_running = False
|
||||
|
||||
self.handler_paths = handler_paths
|
||||
self.handler_paths = handler_paths or []
|
||||
|
||||
self.server_type = server_type
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue