X Tutup
Skip to content

Commit 3133f1b

Browse files
committed
flake8 cleanup
1 parent 95dc63d commit 3133f1b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

twitter/__init__.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@
4040
from .error import TwitterError # noqa
4141
from .parse_tweet import ParseTweet # noqa
4242

43-
from .models import (
44-
Category,
45-
DirectMessage,
46-
Hashtag,
47-
List,
48-
Media,
49-
Trend,
50-
Url,
51-
User,
52-
UserStatus,
43+
from .models import ( # noqa
44+
Category, # noqa
45+
DirectMessage, # noqa
46+
Hashtag, # noqa
47+
List, # noqa
48+
Media, # noqa
49+
Trend, # noqa
50+
Url, # noqa
51+
User, # noqa
52+
UserStatus, # noqa
53+
Status # noqa
5354
)
5455

55-
from .models import Status # noqa
5656
from .api import Api # noqa

0 commit comments

Comments
 (0)
X Tutup