mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
13 lines
126 B
Python
13 lines
126 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""
|
||
|
Program
|
||
|
"""
|
||
|
|
||
|
def main():
|
||
|
"""Run the program"""
|
||
|
pass
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|