Post code-cleanup

This commit is contained in:
lwark
2025-01-21 15:18:37 -06:00
parent bf711369c6
commit bc4af61f5f
26 changed files with 546 additions and 377 deletions

View File

@@ -17,10 +17,10 @@ class PCRFigure(CustomFigure):
months: int = 6):
super().__init__(df=df, modes=modes, settings=settings)
self.df = df
try:
months = int(settings['months'])
except KeyError:
months = 6
# try:
# months = int(settings['months'])
# except KeyError:
# months = 6
self.construct_chart(df=df)
def construct_chart(self, df: pd.DataFrame):