1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Remove the shebang line from all the class-defining Python files
where it is not needed (patch pushed upstream via pull request).
diff --git a/pymzml/obo.py b/pymzml/obo.py
index 6a1c535..c227499 100755
--- a/pymzml/obo.py
+++ b/pymzml/obo.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python3.2
# -*- coding: utf-8 -*-
# encoding: utf-8
"""
diff --git a/pymzml/plot.py b/pymzml/plot.py
index 187c97c..f444bec 100644
--- a/pymzml/plot.py
+++ b/pymzml/plot.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python3.2
# -*- coding: utf-8 -*-
# encoding: utf-8
"""
diff --git a/pymzml/run.py b/pymzml/run.py
index 1f8fea8..ce95647 100644
--- a/pymzml/run.py
+++ b/pymzml/run.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python3.4
# -*- coding: utf-8 -*-
# encoding: utf-8
"""
diff --git a/pymzml/spec.py b/pymzml/spec.py
index 2799203..9afffcc 100755
--- a/pymzml/spec.py
+++ b/pymzml/spec.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python3.2
# -*- coding: utf-8 -*-
# encoding: utf-8
"""
|