Skip to content

Commit 7f9c523

Browse files
committed
Update comment
1 parent b46e443 commit 7f9c523

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

polygon/rest/models/financials.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,6 @@ def parse_statement(x):
330330
class StockFinancial:
331331
"""
332332
StockFinancial contains historical financial data for a stock ticker.
333-
Augmented with new fields such as net_income_loss, diluted_earnings_per_share, etc.
334-
to avoid repeated dictionary lookups into 'financials' for common data.
335333
"""
336334

337335
# Existing fields (unchanged):
@@ -345,9 +343,6 @@ class StockFinancial:
345343
source_filing_file_url: Optional[str] = None
346344
source_filing_url: Optional[str] = None
347345
start_date: Optional[str] = None
348-
net_income_loss: Optional[float] = None
349-
net_income_loss_attributable_to_parent: Optional[float] = None
350-
diluted_earnings_per_share: Optional[float] = None
351346

352347
@staticmethod
353348
def from_dict(d):

0 commit comments

Comments
 (0)