Skip to content

Commit 38dec3b

Browse files
authored
chore: Drop coding utf-8 comments (#698)
Closes: SDK-2003 Fixes: #694
1 parent 6fd6366 commit 38dec3b

File tree

213 files changed

+74
-426
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+74
-426
lines changed

README.md

Lines changed: 2 additions & 2 deletions

boxsdk/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
from .auth import JWTAuth, OAuth2
42
from .client import * # pylint:disable=wildcard-import,redefined-builtin
53
from .exception import * # pylint:disable=wildcard-import

boxsdk/auth/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
from .cooperatively_managed_oauth2 import CooperativelyManagedOAuth2
42
from .developer_token_auth import DeveloperTokenAuth
53
try:

boxsdk/auth/cooperatively_managed_oauth2.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
from typing import Callable, Tuple, Any
32

43
from .oauth2 import OAuth2

boxsdk/auth/developer_token_auth.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
from typing import Callable, Any, Tuple, Optional
32

43
from .oauth2 import OAuth2

boxsdk/auth/jwt_auth.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
from datetime import datetime, timedelta
42
import json
53
import random

boxsdk/auth/oauth2.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
from contextlib import contextmanager
42
from logging import getLogger
53
import random

boxsdk/auth/redis_managed_jwt_auth.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
from typing import Tuple
32

43
from .jwt_auth import JWTAuth

boxsdk/auth/redis_managed_oauth2.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
from typing import Any, Tuple, Optional
32
from uuid import uuid4
43

boxsdk/auth/remote_managed_oauth2.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
from typing import Callable, Any, Tuple
32

43
from .oauth2 import OAuth2

0 commit comments

Comments
 (0)