From 01c5451da37c75e2551c2750e7803ca2c34d68d8 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Sun, 4 Apr 2021 10:21:43 +0200 Subject: [PATCH] :pencil: Renamed games.py to gamesContainer.py Making it clear that it's a container and should only be used to store other classes. --- funcs/games/__init__.py | 2 +- funcs/games/{games.py => gamesContainer.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename funcs/games/{games.py => gamesContainer.py} (100%) diff --git a/funcs/games/__init__.py b/funcs/games/__init__.py index b1839ad..8d19ead 100644 --- a/funcs/games/__init__.py +++ b/funcs/games/__init__.py @@ -3,4 +3,4 @@ __all__ = ["Money", "Games"] from .money import Money -from .games import Games +from .gamesContainer import Games diff --git a/funcs/games/games.py b/funcs/games/gamesContainer.py similarity index 100% rename from funcs/games/games.py rename to funcs/games/gamesContainer.py