Skip to content

Commit b18385b

Browse files
committed
fix lint
1 parent fbc8d75 commit b18385b

3 files changed

Lines changed: 3 additions & 12 deletions

File tree

linode_api4/objects/database.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
from dataclasses import dataclass, field
22
from typing import Optional
33

4-
from linode_api4.objects import (
5-
Base,
6-
JSONObject,
7-
MappedObject,
8-
Property,
9-
)
4+
from linode_api4.objects import Base, JSONObject, MappedObject, Property
105

116

127
class DatabaseType(Base):

test/integration/linode_client/test_linode_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,7 @@ def test_fails_to_create_image_with_non_existing_disk_id(
116116
disk_id = 111111
117117

118118
try:
119-
client.image_create(
120-
disk=disk_id, label=label, description=description
121-
)
119+
client.image_create(disk=disk_id, label=label, description=description)
122120
except ApiError as e:
123121
assert 400 <= e.status < 500
124122

test/integration/models/sharegroups/test_sharegroups.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import datetime
22
from test.integration.conftest import get_region
3-
from test.integration.helpers import (
4-
get_test_label,
5-
)
3+
from test.integration.helpers import get_test_label
64

75
import pytest
86

0 commit comments

Comments
 (0)