Skip to content

Commit 1f5fd09

Browse files
committed
Fix ShellBang Python Analysis
Do not assume a location of the python interpreter.
1 parent 94e2366 commit 1f5fd09

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Examples/Modules/laser_injection_from_file/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3
1+
#!/usr/bin/env python
22

33
# This file is part of the WarpX automated test suite. It is used to test the
44
# injection of a laser pulse from an external binary file.

Examples/Modules/relativistic_space_charge_initialization/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22
"""
33
This script checks the space-charge initialization routine, by
44
verifying that the space-charge field of a Gaussian beam corresponds to

Examples/Modules/space_charge_initialization/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22
"""
33
This script checks the space-charge initialization routine, by
44
verifying that the space-charge field of a Gaussian beam corresponds to

0 commit comments

Comments
 (0)