Skip to content

Commit

Permalink
Fix problem with serializer import (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanSheps authored Sep 9, 2024
2 parents 1ccbf8f + 8efd028 commit 7e89642
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions netbox_lifecycle/api/serializers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from _serializers.contract import *
from _serializers.hardware import *
from _serializers.license import *
from _serializers.vendor import *
from netbox_lifecycle.api._serializers.contract import *
from netbox_lifecycle.api._serializers.hardware import *
from netbox_lifecycle.api._serializers.license import *
from netbox_lifecycle.api._serializers.vendor import *

__all__ = (
'VendorSerializer',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='netbox-lifecycle',
version='1.1.0',
version='1.1.1',
description='NetBox Lifecycle',
long_description='NetBox Support Contract and EOL/EOS management',
url='https://github.com/dansheps/netbox-lifecycle/',
Expand Down

0 comments on commit 7e89642

Please sign in to comment.