From 74594d0b9d4cc0ab47073c0e39bb8659fe240588 Mon Sep 17 00:00:00 2001 From: Vlad Pronsky Date: Sat, 15 Jul 2023 03:22:31 +0300 Subject: [PATCH] fix lint --- tests/test_utils.py | 1 + twscrape/api.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 5c96b03..0d57340 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,3 +1,4 @@ +# ruff: noqa: E501 from twscrape.utils import parse_cookies diff --git a/twscrape/api.py b/twscrape/api.py index 1fc37cf..fe79eed 100644 --- a/twscrape/api.py +++ b/twscrape/api.py @@ -1,7 +1,8 @@ +# ruff: noqa: F405 from httpx import Response from .accounts_pool import AccountsPool -from .constants import * +from .constants import * # noqa: F403 from .logger import set_log_level from .models import Tweet, User, get_tweets, get_users from .queue_client import QueueClient