We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53def06 commit add60aaCopy full SHA for add60aa
plot_uk_marriage_rates.py
@@ -68,10 +68,10 @@ def __init__(self):
68
# super(PlotUKMarriageRates, self).process_options()
69
70
def run(self):
71
- if not self.args:
72
- self.usage("Provide path to datadownload.xlsx")
73
-
74
- file_path = self.args[0]
+ file_path = f"{srcdir}/tests/data/uk_marriage_rates_2022.xslx"
+ if self.args:
+ file_path = self.args[0]
+ #self.usage("Provide path to datadownload.xlsx")
75
76
if not os.path.isfile(file_path):
77
self.usage(f"Invalid argument provided, not a file: {file_path}")
0 commit comments