Add Brazilian power outlet standard to choices.py

This commit is contained in:
Bruno Blanes 2023-06-26 16:47:13 -03:00 committed by GitHub
parent 290ffd408a
commit 0861c17231
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -616,6 +616,9 @@ class PowerOutletTypeChoices(ChoiceSet):
TYPE_ITA_N = 'ita-n'
TYPE_ITA_O = 'ita-o'
TYPE_ITA_MULTISTANDARD = 'ita-multistandard'
# NBR 14136
TYPE_NBR_14136_10A = 'nbr-14136-10a'
TYPE_NBR_14136_20A = 'nbr-14136-20a'
# USB
TYPE_USB_A = 'usb-a'
TYPE_USB_MICROB = 'usb-micro-b'
@ -724,6 +727,10 @@ class PowerOutletTypeChoices(ChoiceSet):
(TYPE_ITA_O, 'ITA Type O'),
(TYPE_ITA_MULTISTANDARD, 'ITA Multistandard'),
)),
('NBR 14136', (
(TYPE_NBR_14136_10A, '2P+T 10A'),
(TYPE_NBR_14136_20A, '2P+T 20A'),
)),
('USB', (
(TYPE_USB_A, 'USB Type A'),
(TYPE_USB_MICROB, 'USB Micro B'),