Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
- TrackerGG/__init__.py: Sort imports
- TrackerGG/client.py: Sort imports
- TrackerGG/httpclient.py: Sort imports
- TrackerGG/csgo.py: Sort imports
  • Loading branch information
dev-ruby committed Mar 29, 2023
1 parent 7095a06 commit f816a24
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
3 changes: 2 additions & 1 deletion TrackerGG/Models/csgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
"""
from typing import Dict, Any, List

from .platform import PlatformInfo
from .user import UserInfo
from .segment import Segment
from .user import UserInfo


class CSGOProfile:
Expand Down
3 changes: 1 addition & 2 deletions TrackerGG/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@
"""

from .client import CSGOClient

from .Models import CSGOProfile
from .client import CSGOClient
8 changes: 4 additions & 4 deletions TrackerGG/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"""

import asyncio
import json

from .Models import CSGOProfile
from .httpclient import HTTPClient
from .httpclient import RequestMethod
from .httpclient import Route
from .httpclient import ResponseData
from .Models import CSGOProfile

import json
from .httpclient import Route


class CSGOClient:
Expand Down
6 changes: 3 additions & 3 deletions TrackerGG/httpclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"""

import asyncio
import aiohttp
import atexit

from typing import ClassVar, Optional, Dict, Any
from enum import Enum
from typing import ClassVar, Optional, Dict, Any

import aiohttp


class Missing:
Expand Down

0 comments on commit f816a24

Please sign in to comment.