Skip to content

Commit ec54915

Browse files
committed
fixes
1 parent 8864fde commit ec54915

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

yeti_switch_api/orm/account.py

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,25 @@ class Meta:
4040

4141
def creatable_fields(self):
4242
return [
43-
"external-id",
44-
"uuid",
45-
"name",
46-
"contractor",
47-
"timezone",
48-
"invoice-template",
49-
"min-balance",
50-
"max-balance",
51-
"vat",
52-
"balance-low-threshold",
53-
"balance-high-threshold",
54-
"send-balance-notifications-to"
55-
"destination-rate-limit",
56-
"max-call-duration",
57-
"origination-capacity",
58-
"termination-capacity",
59-
"total-capacity",
60-
"invoice-period-id",
61-
"send-invoices-to"
43+
"external-id",
44+
"uuid",
45+
"name",
46+
"contractor",
47+
"timezone",
48+
"invoice-template",
49+
"min-balance",
50+
"max-balance",
51+
"vat",
52+
"balance-low-threshold",
53+
"balance-high-threshold",
54+
"send-balance-notifications-to",
55+
"destination-rate-limit",
56+
"max-call-duration",
57+
"origination-capacity",
58+
"termination-capacity",
59+
"total-capacity",
60+
"invoice-period-id",
61+
"send-invoices-to",
6262
]
6363

6464
def updatable_fields(self):

yeti_switch_api/orm/customers_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def creatable_fields(self):
4141
"dst-prefix",
4242
"x-yeti-auth",
4343
"tag-action",
44-
"tag-action-value"
44+
"tag-action-value",
4545
]
4646

4747
def updatable_fields(self):

yeti_switch_api/orm/numberlist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Meta:
3434

3535
def creatable_fields(self):
3636
return [
37-
"name"
37+
"name",
3838
"default-action-id",
3939
"tag-action",
4040
"tag-action-value",
@@ -46,7 +46,7 @@ def creatable_fields(self):
4646
"default-dst-rewrite-result",
4747
"defer-dst-rewrite",
4848
"external-id",
49-
"external-type"
49+
"external-type",
5050
]
5151

5252
def updatable_fields(self):

yeti_switch_api/orm/numberlist_item.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ class Meta:
2929

3030
def creatable_fields(self):
3131
return [
32-
"numberlist"
32+
"numberlist",
3333
"key",
3434
"number-min-length",
3535
"number-max-length",
3636
"src-rewrite-rule",
3737
"src-rewrite-result",
38-
"defer-src-rewrite"
38+
"defer-src-rewrite",
3939
"dst-rewrite-rule",
4040
"dst-rewrite-result",
4141
"defer-dst-rewrite",
4242
"action-id",
4343
"tag-action",
44-
"tag-action-value"
44+
"tag-action-value",
4545
]
4646

4747
def updatable_fields(self):

0 commit comments

Comments
 (0)