diff --git a/update_repos.py b/update_repos.py index 97efa16..d123c69 100755 --- a/update_repos.py +++ b/update_repos.py @@ -1,3 +1,7 @@ +#!/usr/bin/env python3 +# +# Ferit Yiğit BALABAN , 2022 +# import os import subprocess from termcolor import colored @@ -32,5 +36,6 @@ def main(): print(f'\nOwO {len(list_of_repos)} tasks compweted successfuwwy') -main() +if __name__ == '__main__': + main()