-
Notifications
You must be signed in to change notification settings - Fork 49
add multi label support #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## master #144 +/- ##
==========================================
+ Coverage 85.66% 86.18% +0.52%
==========================================
Files 8 8
Lines 530 543 +13
==========================================
+ Hits 454 468 +14
+ Misses 76 75 -1
Continue to review full report at Codecov.
|
redisgraph/node.py
Outdated
@@ -11,7 +11,17 @@ def __init__(self, node_id=None, alias=None, label=None, properties=None): | |||
""" | |||
self.id = node_id | |||
self.alias = alias | |||
self.label = label | |||
if label is None or (isinstance(label, list) and len(label) == 0): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
handle the case where label = ""
Kudos, SonarCloud Quality Gate passed!
|
No description provided.