Skip to content

Commit 7a8ba35

Browse files
committed
Whitespace cleanup: trakt/core.py
1 parent d7eb0ca commit 7a8ba35

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

trakt/core.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"""Objects, properties, and methods to be shared across other modules in the
33
trakt package
44
"""
5+
56
import os
67
from functools import lru_cache
78
from typing import NamedTuple
@@ -86,10 +87,10 @@ def config():
8687
def api():
8788
"""
8889
Create an HTTP client for interacting with the Trakt API using configured authentication.
89-
90+
9091
Returns:
9192
HttpClient: A configured HTTP client with token-based authentication for making API requests.
92-
93+
9394
Notes:
9495
- Uses the global BASE_URL and session for creating the HTTP client
9596
- Configures the client with a TokenAuth instance using the current authentication configuration
@@ -136,19 +137,23 @@ class Comment(NamedTuple):
136137
# Backward compat with 3.x
137138
def delete(f):
138139
from trakt.decorators import delete
140+
139141
return delete(f)
140142

141143

142144
def get(f):
143145
from trakt.decorators import get
146+
144147
return get(f)
145148

146149

147150
def post(f):
148151
from trakt.decorators import post
152+
149153
return post(f)
150154

151155

152156
def put(f):
153157
from trakt.decorators import put
158+
154159
return put(f)

0 commit comments

Comments
 (0)