Remove _core.Enum and aenum dependency

This commit is contained in:
Mads Marquart
2020-01-09 20:58:27 +01:00
parent c81e509eb0
commit 9f1c9c9697
6 changed files with 9 additions and 41 deletions

View File

@@ -2,12 +2,13 @@ import abc
import attr
import collections
import datetime
from ._core import attrs_default, Enum, Image
import enum
from ._core import attrs_default, Image
from . import _util, _exception, _session, _graphql, _attachment, _file, _plan
from typing import MutableMapping, Any, Iterable, Tuple, Optional
class ThreadLocation(Enum):
class ThreadLocation(enum.Enum):
"""Used to specify where a thread is located (inbox, pending, archived, other)."""
INBOX = "INBOX"