From e84879eb635af1250d92f2968bb20e3c6f9195ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Sat, 19 Mar 2022 19:57:49 +0300 Subject: [PATCH] Add contribution header and suggested script call --- update_repos.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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()