Snake case

main
Bob Mottram 2022-06-10 14:48:08 +01:00
parent 622d6015d3
commit 155b62d6b1
1 changed files with 2 additions and 2 deletions

View File

@ -20758,12 +20758,12 @@ class EpicyonServer(ThreadingHTTPServer):
def run_posts_queue(base_dir: str, send_threads: [], debug: bool, def run_posts_queue(base_dir: str, send_threads: [], debug: bool,
timeoutMins: int) -> None: timeout_mins: int) -> None:
"""Manages the threads used to send posts """Manages the threads used to send posts
""" """
while True: while True:
time.sleep(1) time.sleep(1)
remove_dormant_threads(base_dir, send_threads, debug, timeoutMins) remove_dormant_threads(base_dir, send_threads, debug, timeout_mins)
def run_shares_expire(version_number: str, base_dir: str) -> None: def run_shares_expire(version_number: str, base_dir: str) -> None: