Skip to content

Commit

Permalink
Fixed bad import ordering in ux.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekoka.tt committed Sep 16, 2020
1 parent 4955113 commit ccc27fe
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions hikari/utilities/ux.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
"""User-experience extensions and utilities."""
from __future__ import annotations

import time

from hikari.utilities import net

__all__: typing.List[str] = ["init_logging", "print_banner", "supports_color", "HikariVersion", "check_for_updates"]

import contextlib
Expand All @@ -37,11 +33,13 @@
import re
import string
import sys
import time
import typing

import colorlog # type: ignore[import]

from hikari import _about as about
from hikari.utilities import net

if typing.TYPE_CHECKING:
from hikari import config
Expand Down

0 comments on commit ccc27fe

Please sign in to comment.