Skip to content

Commit 9ab04ad

Browse files
committed
[arg_route] Fix pycodestyle complaints
1 parent 10cc109 commit 9ab04ad

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

plugins/module_utils/arg_route.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ def p2o_interface(self, name, params, obj):
1717
def p2o_interface_without_virtual(self, name, params, obj):
1818
obj[name] = self.pfsense.parse_interface(params[name], with_virtual=False)
1919

20+
2021
def p2o_port(self, name, params, obj):
2122
obj[name] = self.pfsense.parse_port(params[name], with_virtual=True)
2223

24+
2325
def p2o_strip(self, name, params, obj):
2426
if params[name] is not None:
2527
obj[name] = params[name].strip()

0 commit comments

Comments
 (0)