mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 01:59:25 +01:00
19 lines
375 B
Python
19 lines
375 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""ari.lt"""
|
||
|
|
||
|
from warnings import filterwarnings as filter_warnings
|
||
|
|
||
|
|
||
|
def main() -> int:
|
||
|
"""entry/main function"""
|
||
|
|
||
|
return 0
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
assert main.__annotations__.get("return") is int, "main() should return an integer"
|
||
|
|
||
|
filter_warnings("error", category=Warning)
|
||
|
raise SystemExit(main())
|