Initialize BaseComponent members in constructor
This commit is contained in:
parent
a9fd516dad
commit
0763f0d999
2 changed files with 7 additions and 6 deletions
|
@ -2,10 +2,10 @@ from autobahn.asyncio.wamp import ApplicationSession
|
|||
|
||||
class BaseComponent(ApplicationSession):
|
||||
""" Base class for all registered component sessions in the server. """
|
||||
server = None
|
||||
parent_manager = None
|
||||
build_logs = None
|
||||
user_files = None
|
||||
|
||||
def __init__(self, config, **kwargs):
|
||||
ApplicationSession.__init__(self, config)
|
||||
self.server = None
|
||||
self.parent_manager = None
|
||||
self.build_logs = None
|
||||
self.user_files = None
|
||||
|
|
Reference in a new issue