mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-25 01:48:38 -06:00
fix circular import for ObjectChange, for now...
This commit is contained in:
parent
b9d11aa4ca
commit
de52f21905
@ -868,7 +868,10 @@ class ObjectChange(models.Model):
|
|||||||
# Tags
|
# Tags
|
||||||
#
|
#
|
||||||
|
|
||||||
from utilities.models import ChangeLoggedModel
|
# TODO: figure out a way around this circular import for ObjectChange
|
||||||
|
from utilities.models import ChangeLoggedModel # noqa: E402
|
||||||
|
|
||||||
|
|
||||||
class Tag(TagBase, ChangeLoggedModel):
|
class Tag(TagBase, ChangeLoggedModel):
|
||||||
color = ColorField(
|
color = ColorField(
|
||||||
default='9e9e9e'
|
default='9e9e9e'
|
||||||
|
Loading…
Reference in New Issue
Block a user