8 lines
94 B
Python
8 lines
94 B
Python
def main() -> None:
|
|
"""main function."""
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|