8000 Fix lint · Raptorly1/client-python@7acc4ad · GitHub
[go: up one dir, main page]

Skip to content

Commit 7acc4ad

Browse files
committed
Fix lint
1 parent 4ef6f13 commit 7acc4ad

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/rest/stocks-short_interest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
short_interest = []
1010
for si in client.list_short_interest(
11-
identifier="AMD",
11+
identifier="AMD",
1212
identifier_type="ticker",
1313
params={
1414
"date.gte": "2024-10-07",
1515
"date.lte": "2024-10-07",
1616
},
17-
limit=100
17+
limit=100,
1818
):
1919
short_interest.append(si)
2020

polygon/rest/models/tickers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ class TickerChangeResults:
254254
def from_dict(d):
255255
return TickerChangeResults(**d)
256256

257+
257258
@modelclass
258259
class ShortInterest:
259260
"""
@@ -284,6 +285,7 @@ def from_dict(d):
284285
us_code=d.get("us_code"),
285286
)
286287

288+
287289
@modelclass
288290
class IPOListing:
289291
"""

0 commit comments

Comments
 (0)
0