Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit ad9ce64

Browse files
Ethan ChrispEthan Chrisp
Ethan Chrisp
authored and
Ethan Chrisp
committed
Fix circular import in Object class
1 parent 7fbd6ad commit ad9ce64

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

callofduty/object.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import logging
22
from typing import Optional
33

4-
from .client import Client
5-
64
log: logging.Logger = logging.getLogger(__name__)
75

86

@@ -18,8 +16,8 @@ class Object:
1816

1917
_type: Optional[str] = None
2018

21-
def __init__(self, client: Client):
22-
self._client: Client = client
19+
def __init__(self, client):
20+
self._client = client
2321

2422
@property
2523
def type(self) -> Optional[str]:

0 commit comments

Comments
 (0)