From db21a1bd6593a3b7bd919662639b66c61a62d80b Mon Sep 17 00:00:00 2001 From: linarphy Date: Mon, 26 Jun 2023 11:39:29 +0200 Subject: [PATCH] Add shebang to execute directly --- ETA.py | 2 ++ spectrum.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ETA.py b/ETA.py index e392b93..7741b15 100644 --- a/ETA.py +++ b/ETA.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import numpy as np import matplotlib.pyplot as plt import utils diff --git a/spectrum.py b/spectrum.py index febd78f..d90598b 100644 --- a/spectrum.py +++ b/spectrum.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import numpy as np import matplotlib.pyplot as plt from scipy.signal import medfilt , find_peaks