diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-11-06 23:27:55 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-11-06 23:27:55 -0600 |
commit | fe31857c7d5b90c90784d83b12326c0ba80ff019 (patch) | |
tree | a9f87550c178ed3dd15120c1775bceb169fd5132 /yoshi/process.py | |
parent | 84fbb3ea67f802bab3d990c651e6c47430cfd4d7 (diff) | |
download | yoshi-cli-fe31857c7d5b90c90784d83b12326c0ba80ff019.tar.gz yoshi-cli-fe31857c7d5b90c90784d83b12326c0ba80ff019.tar.bz2 yoshi-cli-fe31857c7d5b90c90784d83b12326c0ba80ff019.zip |
fix pylint errors
Diffstat (limited to 'yoshi/process.py')
-rw-r--r-- | yoshi/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yoshi/process.py b/yoshi/process.py index 155f9b0..107abfc 100644 --- a/yoshi/process.py +++ b/yoshi/process.py @@ -28,7 +28,7 @@ import random import uuid from prettytable import PrettyTable from yoshi.account import Account -import yoshi.database as database +from yoshi import database def generate_characters(n: int) -> list: |