comictagger/comictagger.py
Timmy Welch ff73cbf2f9 Fix small issues
Fix spelling errors
Remove Redundant exception types
Remove dead code
Change the forum link to point to GitHub discussions
2022-06-07 20:22:33 -07:00

10 lines
189 B
Python
Executable File

#!/usr/bin/env python3
from __future__ import annotations
import localefix
from comictaggerlib.main import ctmain
if __name__ == "__main__":
localefix.configure_locale()
ctmain()