Skip to content

Commit 8718014

Browse files
committed
fix lint errors
1 parent c491531 commit 8718014

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

validator/delphi_validator/static.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ def check_bad_geo_id_value(self, df_to_test, filename, geo_type, report):
151151
if len(unexpected_geos) > 0:
152152
report.add_raised_error(ValidationFailure("check_bad_geo_id_value",
153153
filename,
154-
f"Unrecognized geo_ids (not in historical "
155-
"data) {unexpected_geos}"))
154+
"Unrecognized geo_ids (not in historical "
155+
f"data) {unexpected_geos}"))
156156
report.increment_total_checks()
157157
upper_case_geos = [
158158
geo for geo in df_to_test['geo_id'] if geo.lower() != geo]
@@ -374,8 +374,8 @@ def check_bad_sample_size(self, df_to_test, nameformat, report):
374374
report.add_raised_error(
375375
ValidationFailure("check_n_missing_or_gt_min",
376376
nameformat,
377-
f"sample size must be NA or >= "\
378-
"{self.params.minimum_sample_size}"))
377+
"sample size must be NA or >= "
378+
f"{self.params.minimum_sample_size}"))
379379

380380
report.increment_total_checks()
381381

0 commit comments

Comments
 (0)