Skip to content

Commit

Permalink
Merge pull request #133 from matyasselmeci/pr/py3
Browse files Browse the repository at this point in the history
Set shebang line on our Python validation scripts to be explicitly Python 3
  • Loading branch information
matyasselmeci committed Mar 15, 2024
2 parents e74b2db + 2972882 commit 9f94425
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/test_validate_dn_format.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python3

import unittest
import validate_dn_format
Expand Down
2 changes: 1 addition & 1 deletion bin/validate_dn_format.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python3

import glob
import os
Expand Down
4 changes: 1 addition & 3 deletions bin/vomses-crosscheck
@@ -1,6 +1,4 @@
#!/usr/bin/python
from __future__ import print_function

#!/usr/bin/python3
import re
import os
import glob
Expand Down

0 comments on commit 9f94425

Please sign in to comment.