Changed: reorder import statements for consistency

This commit is contained in:
etienne-hd
2025-12-24 15:45:44 +01:00
parent 8d4d2da64f
commit a927bd7cf5
3 changed files with 6 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
from .user import User
from dataclasses import dataclass from dataclasses import dataclass
from typing import List, Any, Optional from typing import List, Any, Optional
from .user import User
@dataclass @dataclass
class Location: class Location:
country_id: str country_id: str

View File

@@ -1,8 +1,8 @@
from .ad import Ad
from dataclasses import dataclass from dataclasses import dataclass
from typing import List, Any from typing import List, Any
from .ad import Ad
@dataclass @dataclass
class Search: class Search:
total: int total: int

View File

@@ -1,8 +1,8 @@
from typing import Optional, Union, List
from .model import Category, AdType, OwnerType, Sort, Region, Department, City from .model import Category, AdType, OwnerType, Sort, Region, Department, City
from .exceptions import InvalidValue from .exceptions import InvalidValue
from typing import Optional, Union, List
def build_search_payload_with_url( def build_search_payload_with_url(
url: str, url: str,
limit: int = 35, limit: int = 35,