kxgames / glooey

An object-oriented GUI library for pyglet.
MIT License
91 stars 6 forks source link

Unnecessary Hash-bang in files #44

Closed expeditioneer closed 3 years ago

expeditioneer commented 3 years ago

The Hash-bang #!/usr/bin/env python3 in each file is unnecessary, because AFAICS the files are not intended to be executed. The Hash-bang leads to confiusion, could this be removed and only put in place where it is necessary?

kalekundert commented 3 years ago

You're right that those lines aren't really necessary, but I like that they clarify that the code is for python3 as opposed to python2. My editor also uses those lines to decide how some things should be syntax-highlighted, e.g. print. So unless there's a more concrete problem that these lines are causing, I'd like to keep them.