mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-09 09:08:15 -06:00
Addressed PR comments.
This commit is contained in:
parent
270bd53301
commit
e94b2f39d0
@ -135,7 +135,7 @@ class ConditionSet:
|
|||||||
def __init__(self, ruleset):
|
def __init__(self, ruleset):
|
||||||
if type(ruleset) is not dict:
|
if type(ruleset) is not dict:
|
||||||
raise ValueError(_("Ruleset must be a dictionary, not {ruleset}.").format(ruleset=type(ruleset)))
|
raise ValueError(_("Ruleset must be a dictionary, not {ruleset}.").format(ruleset=type(ruleset)))
|
||||||
print(len(ruleset))
|
|
||||||
if len(ruleset) == 1:
|
if len(ruleset) == 1:
|
||||||
self.logic = (list(ruleset.keys())[0]).lower()
|
self.logic = (list(ruleset.keys())[0]).lower()
|
||||||
if self.logic not in (AND, OR):
|
if self.logic not in (AND, OR):
|
||||||
|
Loading…
Reference in New Issue
Block a user