mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
network: add some missing self parameters
This commit is contained in:
parent
9f362e7858
commit
b0684fb81e
1 changed files with 3 additions and 3 deletions
|
@ -39,13 +39,13 @@ class Network:
|
|||
self.on_command=on_command
|
||||
self.on_identified=on_identified
|
||||
|
||||
def get_last_active_time(user_name,group_name=None):
|
||||
def get_last_active_time(self,user_name,group_name=None):
|
||||
return None
|
||||
|
||||
def get_active_users(seconds,group_name=None):
|
||||
def get_active_users(self,seconds,group_name=None):
|
||||
return []
|
||||
|
||||
def get_users(group_name=None):
|
||||
def get_users(self,group_name=None):
|
||||
return []
|
||||
|
||||
def update_users_list(self,group_name=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue