Skip to content

Commit 2d2cf44

Browse files
authored
chore: fix lint errors (#904)
1 parent ef200cb commit 2d2cf44

4 files changed

Lines changed: 0 additions & 4 deletions

File tree

docs/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
sys.path.insert(0, os.path.abspath(".."))
2020
from twilio import __version__
2121

22-
2322
# -- Project information -----------------------------------------------------
2423

2524
project = "twilio-python"

examples/client_validation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from twilio.http.validation_client import ValidationClient
1313
from twilio.rest import Client
1414

15-
1615
ACCOUNT_SID = os.environ.get("TWILIO_ACCOUNT_SID")
1716
AUTH_TOKEN = os.environ.get("TWILIO_AUTH_TOKEN")
1817

twilio/http/validation_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from twilio.http.response import Response
99
from twilio.jwt.validation import ClientValidationJwt
1010

11-
1211
ValidationPayload = namedtuple(
1312
"ValidationPayload",
1413
["method", "path", "query_string", "all_headers", "signed_headers", "body"],

twilio/jwt/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import jwt as jwt_lib
22
import time
33

4-
54
__all__ = ["Jwt", "JwtDecodeError"]
65

76

0 commit comments

Comments
 (0)