Skip to content

Commit d53fedf

Browse files
committed
T3680: python: linting
1 parent 75da1cc commit d53fedf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

python/vyos/frrender.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,10 @@ def generate(self, config_dict) -> None:
655655
for interface in read_file(static_route_dhcp_interfaces_path, '').split()
656656
}
657657

658-
if self.cached_config_dict == config_dict and self.cached_dhcp_gateways == dhcp_gateways:
658+
if (
659+
self.cached_config_dict == config_dict
660+
and self.cached_dhcp_gateways == dhcp_gateways
661+
):
659662
debug('FRR: NO CHANGES DETECTED')
660663
return False
661664

0 commit comments

Comments
 (0)