Skip to content

Commit

Permalink
fix code error
Browse files Browse the repository at this point in the history
  • Loading branch information
gonuke committed Jul 19, 2024
1 parent 394bce1 commit aba7ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This repository serves as a template for new python projects and a way to expres
* All runnable scripts [should include a block like](https://stackoverflow.com/questions/419163/what-does-if-name-main-do):

``` python
if __name__ == __main__():
if __name__ == "__main__":
do_main_task()
```

Expand Down

0 comments on commit aba7ad8

Please sign in to comment.