-
Notifications
You must be signed in to change notification settings - Fork 12
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
Fix color field source flapping #135
Conversation
@@ -70,6 +71,16 @@ class PreImportResult(Enum): | |||
USE_RECORD = True | |||
|
|||
|
|||
class SourceFieldSource(Enum): |
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.
I don't get the purpose of this class. what does it mean?
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.
"Source Field Source" doesn't resonate with me...
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.
Added description for individual enum entries
@@ -38,8 +38,7 @@ class FieldSummary(NamedTuple): | |||
nautobot_can_import: Optional[bool] | |||
importer: Optional[str] | |||
definition: Union[str, bool, int, float, None] | |||
from_data: Optional[bool] | |||
is_custom: Optional[bool] | |||
sources: List[str] |
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.
I may be missing somethign, but I don't see this attribute initialized, just used
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.
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.
let's get it in
Closes: NaN
What's Changed