Skip to content

Commit 4a89c85

Browse files
Remove useless shebang lines
Since these files do not have the executable bit set in their file permissions, the shebang line (#!) does nothing. For qtsass/cli.py, the file is not even script-like (the “main routine” is only defined, not called, on import). For the other three, setting the executable bit *could* be an alternative, if people wanted to run e.g. “./run_checks_and_format.py” instead of “python3 run_checks_and_format.py”.
1 parent afcd1cf commit 4a89c85

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

qtsass/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# -*- coding: utf-8 -*-
32
# -----------------------------------------------------------------------------
43
# Copyright (c) 2015 Yann Lanthony

qtsass/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# -*- coding: utf-8 -*-
32
# -----------------------------------------------------------------------------
43
# Copyright (c) 2015 Yann Lanthony

run_checks_and_format.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# -*- coding: utf-8 -*-
32
# -----------------------------------------------------------------------------
43
# Copyright (c) 2015 Yann Lanthony

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# -*- coding: utf-8 -*-
32
# -----------------------------------------------------------------------------
43
# Copyright (c) 2015 Yann Lanthony

0 commit comments

Comments
 (0)