ff73cbf2f9
Fix spelling errors Remove Redundant exception types Remove dead code Change the forum link to point to GitHub discussions
10 lines
189 B
Python
Executable File
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()
|