lint: resolved lint issues

This commit is contained in:
acul71
2025-04-29 00:46:54 +00:00
committed by Paul Robinson
parent e928e6a8cd
commit 1213710af3
2 changed files with 13 additions and 14 deletions

View File

@ -104,9 +104,11 @@ async def main() -> None:
logger.error(f"Error during identify push: {str(e)}")
print(f"\nError during identify push: {str(e)}")
if __name__ == "__main__":
trio.run(main)
def run_main():
"""Non-async entry point for the console script."""
trio.run(main)