Skip to content

Commit

Permalink
Change #!/usr/bin/python to #!/usr/bin/env python (#945)
Browse files Browse the repository at this point in the history
Updated #!/usr/bin/python to #!/usr/bin/env python

Signed-off-by: Kishan Verma <kishanverma2312@gmail.com>
Co-authored-by: Kishan Verma <kishanverma2312@gmail.com>
  • Loading branch information
kishan-23 and Kishan Verma committed Sep 11, 2023
1 parent 4b28834 commit 34553ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion prometheus_client/__init__.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

from . import (
exposition, gc_collector, metrics, metrics_core, platform_collector,
Expand Down
2 changes: 1 addition & 1 deletion prometheus_client/openmetrics/exposition.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python


from ..utils import floatToGoString
Expand Down
2 changes: 1 addition & 1 deletion prometheus_client/openmetrics/parser.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python


import io as StringIO
Expand Down

0 comments on commit 34553ad

Please sign in to comment.