We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e4229f commit 984b4dbCopy full SHA for 984b4db
2 files changed
jsondb/__init__.py
@@ -4,7 +4,7 @@
4
5
from .db import Database
6
7
-__version__ = '0.1.4'
+__version__ = '0.1.5'
8
__author__ = 'Gunther Cox'
9
__email__ = 'gunthercx@gmail.com'
10
__url__ = 'https://github.com/gunthercox/jsondb'
jsondb/db.py
@@ -40,9 +40,6 @@ def set_path(self, file_path):
40
Set the path of the database.
41
Create the file if it does not exist.
42
"""
43
-
44
- print(dir(self))
45
46
if not file_path:
47
self.read_data = self.memory_read
48
self.write_data = self.memory_write
0 commit comments