From 81ebba2be275d90be8bc62de3190bbcce4b73d3f Mon Sep 17 00:00:00 2001
From: Kostis Anagnostopoulos <ankostis@gmail.com>
Date: Mon, 16 May 2022 17:44:45 +0300
Subject: [PATCH] fix(scripts) hashbang had extra slashh in `env`

---
 example.py | 2 +-
 main.py    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/example.py b/example.py
index 43a6b32..47a815d 100755
--- a/example.py
+++ b/example.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env/ python3
+#!/usr/bin/env python
 
 import pandas as pd
 
diff --git a/main.py b/main.py
index 712d6ae..244717d 100755
--- a/main.py
+++ b/main.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env/ python
+#!/usr/bin/env python
 
 from collections import defaultdict
 
-- 
GitLab