Skip to content

Commit

Permalink
Merge pull request #30 from boutproject/shebang
Browse files Browse the repository at this point in the history
Remove #! and +x permission
  • Loading branch information
loeiten authored Jan 18, 2021
2 parents 4d1792b + e05d5aa commit d85070b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
5 changes: 1 addition & 4 deletions boututils/anim.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#!/usr/bin/env python3
"""Animate graph with mayavi
"""
"""Animate graph with mayavi"""

from __future__ import print_function

Expand Down
1 change: 0 additions & 1 deletion boututils/boutgrid.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
from __future__ import print_function

from builtins import range
Expand Down
8 changes: 3 additions & 5 deletions boututils/geqdsk.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from __future__ import division, print_function

import re
Expand Down Expand Up @@ -40,9 +38,9 @@ def openFile(self, filename):
self.data["nh"] = int(m.group(3)), "Number of vertical Z grid points"

fltsPat = (
r"^\s*([ \-]\d\.\d+[Ee][\+\-]\d\d)([ \-]\d\.\d+[Ee][\+\-]\d\d)([ \-]"
r"\d\.\d+[Ee][\+\-]\d\d)([ \-]\d\.\d+[Ee][\+\-]\d\d)([ \-]\d\.\d+[Ee]"
r"[\+\-]\d\d)\s*$"
r"^\s*([ \-]\d\.\d+[Ee][\+\-]\d\d)([ \-]\d\.\d+[Ee][\+\-]\d\d)"
r"([ \-]\d\.\d+[Ee][\+\-]\d\d)([ \-]\d\.\d+[Ee][\+\-]\d\d)"
r"([ \-]\d\.\d+[Ee][\+\-]\d\d)\s*$"
)

# 2nd line
Expand Down

0 comments on commit d85070b

Please sign in to comment.