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):
330330class 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 ):
You can’t perform that action at this time.
0 commit comments