File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -330,8 +330,6 @@ def parse_statement(x):
330
330
class StockFinancial :
331
331
"""
332
332
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.
335
333
"""
336
334
337
335
# Existing fields (unchanged):
@@ -345,9 +343,6 @@ class StockFinancial:
345
343
source_filing_file_url : Optional [str ] = None
346
344
source_filing_url : Optional [str ] = None
347
345
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
351
346
352
347
@staticmethod
353
348
def from_dict (d ):
You can’t perform that action at this time.
0 commit comments