Skip to content

Commit 29d9b33

Browse files
changing db name
1 parent 09d8c37 commit 29d9b33

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
File renamed without changes.

python_db/main.py renamed to quickdb/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def print_it(color, text):
1212
elif color == 'blue':
1313
print(Fore.BLUE + text + Style.RESET_ALL)
1414

15-
class Database(object):
15+
class QuickDB(object):
1616
""" python database.py """
1717
def __init__(self, db_path, overwrite_db=False):
1818
self.db_path = db_path

python_db/tests/test_cases.py renamed to quickdb/tests/test_cases.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
sys.path.append('.')
33
import unittest
44

5-
from python_db.main import Database
5+
from quickdb.main import QuickDB
66

7-
db = Database("test_db.json", overwrite_db=True)
7+
db = QuickDB("test_db.json", overwrite_db=True)
88

99
class DatabaseTest(unittest.TestCase):
1010

0 commit comments

Comments
 (0)