From a6fc2a60d09c837e3becced6622a9e42eb92cc88 Mon Sep 17 00:00:00 2001
From: Owen Graham <ohgraham1@madisoncollege.edu>
Date: Wed, 25 May 2022 14:25:29 -0500
Subject: [PATCH] Upgrade venv `asccol` to v0.0.1

---
 visualizer.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/visualizer.py b/visualizer.py
index ce42fb5..4fbf36b 100755
--- a/visualizer.py
+++ b/visualizer.py
@@ -51,7 +51,7 @@ def filtered_float(s):
 
 ONE_HOUR_DATA = asccol.DataSpec(
     leading=2,  # 2 lines to delete
-    cols=asccol.Columns(
+    cols=(
         ('year', int, 4),  # name, type (converter function), width
         ('jdate', int, 4),
         ('month', int, 3),
@@ -66,7 +66,7 @@ ONE_HOUR_DATA = asccol.DataSpec(
     ),
 )
 SOUTH_POLE_DATA = asccol.DataSpec(
-    cols=asccol.Columns(
+    cols=(
         ('year', int, 5),
         ('month', int, 5),
         ('day', int, 5),
-- 
GitLab