Hello,
I noticed that the file mini golf.py contains a space in its name.
On some operating systems (Windows, Linux with certain shells), running a Python script with spaces in the filename can cause errors or require escaping.
Example:
python3 "mini golf.py"
It would be cleaner and more cross-platform to rename it to:
mini_golf.py
I can help submit a PR if needed.
Thanks!
Hello,
I noticed that the file
mini golf.pycontains a space in its name.On some operating systems (Windows, Linux with certain shells), running a Python script with spaces in the filename can cause errors or require escaping.
Example:
python3 "mini golf.py"
It would be cleaner and more cross-platform to rename it to:
mini_golf.py
I can help submit a PR if needed.
Thanks!