Skip to content

Commit 5a84d01

Browse files
committed
pdb statement cleanup, review suggestion
1 parent e48240c commit 5a84d01

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

irods/manager/metadata_manager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ class MetadataManager(Manager):
3636
def __init__(self, *_):
3737
self._opts = _MetadataManager_opts_initializer.copy()
3838
super().__init__(*_)
39-
self.__kw = self.__default_kw.copy()
39+
# For the iRODS-api keywords only (currently ADMIN_KW is the sole one used):
40+
self.__kw = {}
4041

4142
@property
4243
def use_timestamps(self):

irods/test/meta_test.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -806,9 +806,6 @@ def test_destickifying_of_admin_option__issue_833(self):
806806
user = adm.users.create("bobby", "rodsuser")
807807
user.modify("password", "bpass")
808808
sessions = []
809-
810-
import pdb;pdb.set_trace()
811-
812809
for _ in range(2):
813810
with iRODSSession(
814811
port=adm.port,

0 commit comments

Comments
 (0)