mirror of
https://github.com/etienne-hd/lbc.git
synced 2026-04-24 15:55:35 +02:00
Changed: reorder import statements for consistency
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user