Skip to content

Commit

Permalink
imports
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Aug 5, 2021
1 parent 0d45856 commit 2cef98a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rich/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
from datetime import datetime
from functools import wraps
from getpass import getpass
from inspect import isclass
from itertools import islice
from time import monotonic
from types import FrameType, TracebackType
from inspect import isclass
from typing import (
IO,
TYPE_CHECKING,
Expand All @@ -28,12 +28,10 @@
TextIO,
Tuple,
Type,
Tuple,
Union,
cast,
)


if sys.version_info >= (3, 8):
from typing import Literal, Protocol, runtime_checkable
else:
Expand All @@ -43,7 +41,6 @@
runtime_checkable,
) # pragma: no cover


from . import errors, themes
from ._emoji_replace import _emoji_replace
from ._log_render import FormatTimeCallable, LogRender
Expand Down

0 comments on commit 2cef98a

Please sign in to comment.