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 typing import List, Any, Optional
from .user import User
@dataclass
class Location:
country_id: str

View File

@@ -1,8 +1,8 @@
from .ad import Ad
from dataclasses import dataclass
from typing import List, Any
from .ad import Ad
@dataclass
class Search:
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 .exceptions import InvalidValue
from typing import Optional, Union, List
def build_search_payload_with_url(
url: str,
limit: int = 35,