Skip to content

Commit 716e3d4

Browse files
Fix Python 3.6 coding style error
(cherry picked from commit 87d760e)
1 parent 4c19c51 commit 716e3d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

f5/bigip/tm/ltm/test/functional/test_nat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def test_delete(self, request, mgmt_root, NAT):
332332
setup_loadable_nat_test(request, mgmt_root, NAT)
333333
n1 = mgmt_root.tm.ltm.nats.nat.load(name='nat1', partition='Common')
334334
n1.delete()
335-
del(n1)
335+
del n1
336336
with pytest.raises(HTTPError) as err:
337337
mgmt_root.tm.ltm.nats.nat.load(name='nat1', partition='Common')
338338
assert err.response.status_code == 404

0 commit comments

Comments
 (0)