Skip to content

Commit 7a1b141

Browse files
committed
Reorganize imports
1 parent 07a6f06 commit 7a1b141

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

gvm/http/core/headers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99
from dataclasses import dataclass
10-
from typing import Dict, Optional, TypeVar, Type, Union
10+
from typing import Dict, Optional, Type, TypeVar, Union
1111

1212
Self = TypeVar("Self", bound="ContentType")
1313

gvm/http/core/response.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@
77
"""
88

99
from dataclasses import dataclass
10-
from typing import Any, Dict, Optional, TypeVar, Type, Union
10+
from typing import Any, Dict, Optional, Type, TypeVar, Union
1111

1212
from requests import Response
1313
from requests.structures import CaseInsensitiveDict
1414

1515
from gvm.http.core.headers import ContentType
1616

17-
1817
Self = TypeVar("Self", bound="HttpResponse")
1918

2019

0 commit comments

Comments
 (0)