From 9f89a2a89291d19f58bede2961bf1615b15681dd Mon Sep 17 00:00:00 2001 From: Lili Date: Sun, 6 Oct 2024 11:08:17 +0200 Subject: [PATCH] rename tlapbot types :( --- tlapbot/redeems.py | 2 +- tlapbot/{types.py => tlapbot_types.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tlapbot/{types.py => tlapbot_types.py} (100%) diff --git a/tlapbot/redeems.py b/tlapbot/redeems.py index a89d790..27ddf32 100644 --- a/tlapbot/redeems.py +++ b/tlapbot/redeems.py @@ -2,7 +2,7 @@ from flask import current_app from sqlite3 import Error, Connection from typing import Tuple, Any from tlapbot.owncast_helpers import use_points -from tlapbot.types import Redeem, Redeems +from tlapbot.tlapbot_types import Redeem, Redeems def counter_exists(db: Connection, counter_name: str) -> bool: try: diff --git a/tlapbot/types.py b/tlapbot/tlapbot_types.py similarity index 100% rename from tlapbot/types.py rename to tlapbot/tlapbot_types.py