Add shebang to python scrips used in the project.

This prevents the wrong interpreter from being used.
This commit is contained in:
moonheart08
2019-08-14 17:15:57 +00:00
committed by jacob1
parent b975dc2938
commit dc70646ee2
3 changed files with 3 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import re, os, shutil, string, sys import re, os, shutil, string, sys
def generateElements(elementFiles, outputCpp, outputH): def generateElements(elementFiles, outputCpp, outputH):

View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import sys import sys
import re import re
import os import os

View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import os import os
from pathlib import Path from pathlib import Path
import uuid import uuid