11 lines
190 B
Python
Executable File
11 lines
190 B
Python
Executable File
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
import localefix
|
|
from comictaggerlib.main import App
|
|
|
|
if __name__ == "__main__":
|
|
localefix.configure_locale()
|
|
|
|
App().run()
|