Skip to content
Snippets Groups Projects
Verified Commit 60aeb2bc authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

make enums consistens with db again

parent 4e7542a6
No related branches found
No related tags found
1 merge request!47make enums consistens with db again
Pipeline #83735 passed
......@@ -11,20 +11,20 @@ from gso.products.product_blocks.site import SiteBlock, SiteBlockInactive, SiteB
class DeviceVendor(strEnum):
"""Enumerator for the different product vendors that are supported."""
JUNIPER = "Juniper"
JUNIPER = "juniper"
"""Juniper devices."""
NOKIA = "Nokia"
NOKIA = "nokia"
"""Nokia devices."""
class DeviceRole(strEnum):
"""Enumerator for the different types of routers."""
P = "P"
P = "p"
"""P router."""
PE = "PE"
PE = "pe"
"""PE router."""
AMT = "AMT"
AMT = "amt"
"""AMT router."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment