From 2ba6a9c0ca021b7dc005b714169254390443e22e Mon Sep 17 00:00:00 2001 From: Noelle Leigh Date: Sun, 1 Jun 2025 22:21:45 -0400 Subject: [PATCH] Add type hint for cars --- tilde-train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tilde-train.py b/tilde-train.py index d248aa8..40fbf33 100755 --- a/tilde-train.py +++ b/tilde-train.py @@ -51,7 +51,7 @@ max_cars = 10 ## most cars to include in one train. print_train = False ## print train to file (instead of the screen scroll) train = [""]*max_y ## empty train of correct height. -cars = [] +cars: list[list[str]] = [] engine = [ r" ____ ",