diff options
author | Niclas Dobbertin <niclas.dobbertin@stud.tu-darmstadt.de> | 2023-08-10 14:23:13 +0200 |
---|---|---|
committer | Niclas Dobbertin <niclas.dobbertin@stud.tu-darmstadt.de> | 2023-08-10 14:23:13 +0200 |
commit | d013131cbb37125c17c0570c293ab997e7c6710e (patch) | |
tree | bba3f1e3449e6a4a2a413c30ecc07e7bd864d64f /bjoern/videoanalyse | |
parent | 844053793d21229fa4baa61772f571c8622613c5 (diff) |
fix typo
Diffstat (limited to 'bjoern/videoanalyse')
-rw-r--r-- | bjoern/videoanalyse/post_processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |