Skip to content

Commit

Permalink
linters fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Vulwsztyn committed Sep 11, 2024
1 parent 73d683f commit c53e5e3
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions redis/client.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import copy
import re
import ssl
import threading
import time
import warnings
from itertools import chain
from typing import Any, Callable, Dict, List, Optional, Type, Union, Mapping, TYPE_CHECKING
from typing import Any, Callable, Dict, List, Mapping, Optional, Type, Union

import OpenSSL
from redis._cache import (
DEFAULT_ALLOW_LIST,
DEFAULT_DENY_LIST,
Expand Down Expand Up @@ -51,10 +53,6 @@
str_if_bytes,
)

if TYPE_CHECKING:
import OpenSSL
import ssl

SYM_EMPTY = b""
EMPTY_RESPONSE = "EMPTY_RESPONSE"

Expand Down

0 comments on commit c53e5e3

Please sign in to comment.