diff options
author | 2020-03-07 13:23:22 +0100 | |
---|---|---|
committer | 2020-03-07 13:23:22 +0100 | |
commit | 5f829d769f05e3a2054f4352d3f4d04e1e7c7292 (patch) | |
tree | 9ac59dc6adcb80bfc2460f59a35136acfcd1b4cb /bot/utils/persist.py | |
parent | Deseasonify: do not load legacy SeasonManager on start-up (diff) |
Deseasonify: move `get_seasons` util function to package init
Diffstat (limited to 'bot/utils/persist.py')
-rw-r--r-- | bot/utils/persist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/persist.py b/bot/utils/persist.py index a60a1219..3539375a 100644 --- a/bot/utils/persist.py +++ b/bot/utils/persist.py @@ -2,7 +2,7 @@ import sqlite3 from pathlib import Path from shutil import copyfile -from bot.seasons.season import get_seasons +from bot.seasons import get_seasons DIRECTORY = Path("data") # directory that has a persistent volume mapped to it |