From: Christian Heimes Date: Fri, 4 May 2018 20:52:17 +0000 (+0200) Subject: Remove unnecessary shebang lines (#189) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/adf4ebd2d9540dd0812e2db0e5735a5d28d31d81?hp=adf4ebd2d9540dd0812e2db0e5735a5d28d31d81 Remove unnecessary shebang lines (#189) Since black.py is not marked as executable, the shebang in black.py serves no purpose. black should be invoked through its entry point any way. token.py is an internal module without a __name__ == '__main__' block or other executable code. It contains just list of constants and small helper functions. Signed-off-by: Christian Heimes ---