1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix parentheses

This commit is contained in:
Jeremy Stretch
2022-03-28 09:37:33 -04:00
committed by GitHub
parent 1cef513f6c
commit 37781bd208

@ -143,14 +143,14 @@ class FHRPGroupProtocolChoices(ChoiceSet):
(PROTOCOL_VRRP2, 'VRRPv2'),
(PROTOCOL_VRRP3, 'VRRPv3'),
(PROTOCOL_CARP, 'CARP'),
),
)),
('CheckPoint', (
(PROTOCOL_CLUSTERXL, 'ClusterXL'),
),
)),
('Cisco', (
(PROTOCOL_HSRP, 'HSRP'),
(PROTOCOL_GLBP, 'GLBP'),
),
)),
(PROTOCOL_OTHER, 'Other'),
)