Remove default arguments

main
Bob Mottram 2024-02-19 18:39:08 +00:00
parent 0985d93637
commit 3752fac362
2 changed files with 2 additions and 2 deletions

View File

@ -13141,7 +13141,7 @@ class PubServer(BaseHTTPRequestHandler):
self.server.dogwhistles,
self.server.min_images_for_accounts,
self.server.buy_sites,
self.server.auto_cw_cache)
self.server.auto_cw_cache, 'likes')
if not msg:
self._404(69)
return True

View File

@ -45,7 +45,7 @@ def html_likers_of_post(base_dir: str, nickname: str,
bold_reading: bool, dogwhistles: {},
min_images_for_accounts: [],
buy_sites: {}, auto_cw_cache: {},
dict_name: str = 'likes') -> str:
dict_name: str) -> str:
"""Returns html for a screen showing who liked a post
"""
css_filename = base_dir + '/epicyon-profile.css'