From d013131cbb37125c17c0570c293ab997e7c6710e Mon Sep 17 00:00:00 2001
From: Niclas Dobbertin <niclas.dobbertin@stud.tu-darmstadt.de>
Date: Thu, 10 Aug 2023 14:23:13 +0200
Subject: fix typo

---
 bjoern/videoanalyse/post_processing.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bjoern/videoanalyse/post_processing.py b/bjoern/videoanalyse/post_processing.py
index d32457e..a1baa5a 100644
--- a/bjoern/videoanalyse/post_processing.py
+++ b/bjoern/videoanalyse/post_processing.py
@@ -94,7 +94,7 @@ for pair in pairwise(urls):
         new_urls.append(pair[1])
 
 
-with open(data_path / "grouping_post.cvs", "w") as csvfile:
+with open(data_path / "grouping_post.csv", "w") as csvfile:
     writer = csv.writer(csvfile, quotechar='"', quoting=csv.QUOTE_NONNUMERIC)
     writer.writerow(["url"])
     for line in new_urls:
-- 
cgit v1.2.3