Skip to content

Commit 984b4db

Browse files
committed
Remove print statement!
1 parent 0e4229f commit 984b4db

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

jsondb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .db import Database
66

7-
__version__ = '0.1.4'
7+
__version__ = '0.1.5'
88
__author__ = 'Gunther Cox'
99
__email__ = 'gunthercx@gmail.com'
1010
__url__ = 'https://github.com/gunthercox/jsondb'

jsondb/db.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ def set_path(self, file_path):
4040
Set the path of the database.
4141
Create the file if it does not exist.
4242
"""
43-
44-
print(dir(self))
45-
4643
if not file_path:
4744
self.read_data = self.memory_read
4845
self.write_data = self.memory_write

0 commit comments

Comments
 (0)