File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ def single_chart_data_to_context(chart_data: SingleChartDataModel) -> str:
430430
431431 # Active configuration
432432 lines .append (f"\n Active points: { ', ' .join (chart_data .active_points )} " )
433- lines .append (f"Active aspects: { ', ' .join ([f' { a ['name' ]} ( { a ['orb' ]} °)' for a in chart_data .active_aspects ])} " )
433+ lines .append (f"Active aspects: { ', ' .join ([a ['name' ] + ' (' + str ( a ['orb' ]) + ' °)' for a in chart_data .active_aspects ])} " )
434434
435435 return "\n " .join (lines )
436436
@@ -497,7 +497,7 @@ def dual_chart_data_to_context(chart_data: DualChartDataModel) -> str:
497497
498498 # Active configuration
499499 lines .append (f"\n Active points: { ', ' .join (chart_data .active_points )} " )
500- lines .append (f"Active aspects: { ', ' .join ([f' { a ['name' ]} ( { a ['orb' ]} °)' for a in chart_data .active_aspects ])} " )
500+ lines .append (f"Active aspects: { ', ' .join ([a ['name' ] + ' (' + str ( a ['orb' ]) + ' °)' for a in chart_data .active_aspects ])} " )
501501
502502 return "\n " .join (lines )
503503
You can’t perform that action at this time.
0 commit comments