general: cleanup -- remove main and executable bit where it's not necessary

This commit is contained in:
Dima Gerasimov 2022-05-31 20:37:16 +01:00 committed by karlicoss
parent 2025d7ad1a
commit 73e57b52d1
13 changed files with 9 additions and 48 deletions

View file

@ -38,11 +38,3 @@ def get_movies() -> List[Movie]:
def test():
assert len(get_movies()) > 10
def main():
for movie in get_movies():
print(movie)
if __name__ == '__main__':
main()