Skip to content

Commit a33527f

Browse files
Fix circular import
1 parent 42214ac commit a33527f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

linode_api4/objects/database.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@
33

44
from deprecated import deprecated
55

6-
from linode_api4 import JSONObject
7-
from linode_api4.objects import Base, DerivedBase, MappedObject, Property
6+
from linode_api4.objects import (
7+
Base,
8+
DerivedBase,
9+
JSONObject,
10+
MappedObject,
11+
Property,
12+
)
813

914

1015
class DatabaseType(Base):

0 commit comments

Comments
 (0)