Skip to content

Commit 2533483

Browse files
committed
whitespace
1 parent 1c0839c commit 2533483

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

irods/test/client_configuration_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ def test_configuration_writes_and_miswrites__issue_708(self):
1818
namespace = '.'.join(name_parts[:-1])
1919
attribute_name = name_parts[-1]
2020
if isinstance(value, cfg.iRODSConfiguration):
21-
configuration_level[dotted_name]=value
21+
configuration_level[dotted_name] = value
2222
else:
2323
if is_conf:
2424
leaf_names.append(attribute_name)
2525

2626
# Test the positive space, i.e. the 'hit'
27-
setattr(configuration_level[namespace],attribute_name,value)
27+
setattr(configuration_level[namespace], attribute_name, value)
2828

2929
# Test the negative space, i.e. the 'miss'
3030
with self.assertRaises(AttributeError):
31-
setattr(configuration_level[namespace],attribute_name+'_1',value)
31+
setattr(configuration_level[namespace], attribute_name+'_1', value)
3232

3333
# These cases were identified as likely ones for possible failed writes via misspelling.
3434
self.assertIn('irods_query_limit', leaf_names)

0 commit comments

Comments
 (0)