mirror of https://gitlab.com/bashrc2/epicyon
Remove unused arguments
parent
de069cec2e
commit
cf93cb5ee3
10
daemon.py
10
daemon.py
|
@ -4148,7 +4148,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
|
|
||||||
def _remove_reading_status(self, calling_domain: str, cookie: str,
|
def _remove_reading_status(self, calling_domain: str, cookie: str,
|
||||||
path: str, base_dir: str, http_prefix: str,
|
path: str, base_dir: str, http_prefix: str,
|
||||||
domain: str, domain_full: str,
|
domain_full: str,
|
||||||
onion_domain: str, i2p_domain: str,
|
onion_domain: str, i2p_domain: str,
|
||||||
debug: bool,
|
debug: bool,
|
||||||
books_cache: {}) -> None:
|
books_cache: {}) -> None:
|
||||||
|
@ -4223,8 +4223,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
path: str, base_dir: str, http_prefix: str,
|
path: str, base_dir: str, http_prefix: str,
|
||||||
domain: str, domain_full: str, port: int,
|
domain: str, domain_full: str, port: int,
|
||||||
onion_domain: str, i2p_domain: str,
|
onion_domain: str, i2p_domain: str,
|
||||||
debug: bool,
|
debug: bool) -> None:
|
||||||
curr_session, proxy_type: str) -> None:
|
|
||||||
"""Confirms a block from the person options screen
|
"""Confirms a block from the person options screen
|
||||||
"""
|
"""
|
||||||
users_path = path.split('/blockconfirm')[0]
|
users_path = path.split('/blockconfirm')[0]
|
||||||
|
@ -23842,7 +23841,6 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
self.path,
|
self.path,
|
||||||
self.server.base_dir,
|
self.server.base_dir,
|
||||||
self.server.http_prefix,
|
self.server.http_prefix,
|
||||||
self.server.domain,
|
|
||||||
self.server.domain_full,
|
self.server.domain_full,
|
||||||
self.server.onion_domain,
|
self.server.onion_domain,
|
||||||
self.server.i2p_domain,
|
self.server.i2p_domain,
|
||||||
|
@ -23905,9 +23903,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
self.server.port,
|
self.server.port,
|
||||||
self.server.onion_domain,
|
self.server.onion_domain,
|
||||||
self.server.i2p_domain,
|
self.server.i2p_domain,
|
||||||
self.server.debug,
|
self.server.debug)
|
||||||
curr_session,
|
|
||||||
proxy_type)
|
|
||||||
self.server.postreq_busy = False
|
self.server.postreq_busy = False
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue