Skip to content

Commit ad2f71e

Browse files
committed
quiet ruff
1 parent 7211428 commit ad2f71e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

irods/manager/zone_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def remove(self, zone_name):
4444

4545
def modify(self, zone_name, attribute, value):
4646
if attribute == "connection":
47-
attribute = "conn" # server expects this string
47+
attribute = "conn" # server expects this string
4848
message_body = GeneralAdminRequest("modify", "zone", zone_name, attribute, value)
4949
request = iRODSMessage("RODS_API_REQ", msg=message_body, int_info=api_number["GENERAL_ADMIN_AN"])
5050
with self.sess.pool.get_connection() as conn:

irods/test/zone_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def test_create_common_username_remote_then_local__issue_764(self):
6868
if zone:
6969
zone.remove()
7070

71-
7271
def test_create_remote_zone_and_update_properties__issue_816(self):
7372
newzone = None
7473
try:
@@ -107,6 +106,7 @@ def test_create_remote_zone_and_update_properties__issue_816(self):
107106
if newzone:
108107
newzone.remove()
109108

109+
110110
if __name__ == "__main__":
111111
# let the tests find the parent irods lib
112112
sys.path.insert(0, os.path.abspath("../.."))

0 commit comments

Comments
 (0)