From: Harmon Date: Thu, 20 Oct 2022 19:44:29 +0000 (-0500) Subject: Normalize import order in asynchronous.__init__ X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=42c80d4f8d9f71a8d1525789db4d3ed1fcbb74ad;p=tweepy.git Normalize import order in asynchronous.__init__ --- diff --git a/tweepy/asynchronous/__init__.py b/tweepy/asynchronous/__init__.py index 3bd4dc2..a3cf999 100644 --- a/tweepy/asynchronous/__init__.py +++ b/tweepy/asynchronous/__init__.py @@ -19,6 +19,6 @@ except ModuleNotFoundError: "installed" ) -from tweepy.asynchronous.streaming import AsyncStream, AsyncStreamingClient from tweepy.asynchronous.client import AsyncClient from tweepy.asynchronous.pagination import AsyncPaginator +from tweepy.asynchronous.streaming import AsyncStream, AsyncStreamingClient