added returns to text_table_lookahead_analysis_instances

filled in test_lookahead_helper_text_table_lookahead_analysis_instances
This commit is contained in:
hippocritical
2023-05-26 12:55:54 +02:00
parent 70a0c2e625
commit eb31b574c1
2 changed files with 56 additions and 13 deletions

View File

@@ -44,6 +44,7 @@ class LookaheadAnalysisSubFunctions:
from tabulate import tabulate
table = tabulate(data, headers=headers, tablefmt="orgtbl")
print(table)
return table, headers, data
@staticmethod
def export_to_csv(config: Dict[str, Any], lookahead_analysis: List[LookaheadAnalysis]):