Skip to content

Commit

Permalink
fstring quotes to pass pre-commit and change path in coverate
Browse files Browse the repository at this point in the history
  • Loading branch information
sbillinge committed Jul 18, 2024
1 parent 8af4b9c commit e114e98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[run]
source =
regolith/
src/regolith/
[report]
omit =
*/python?.?/*
Expand Down
2 changes: 1 addition & 1 deletion src/regolith/helpers/l_currentappointmentshelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def sout(self):
for _id, appt in p_appt.items():
grantid = appt.get("grant")
if not grantid:
print(f"No grant found in {person.get("_id")} appt {person.get("appt")}")
print(f"No grant found in {person.get('_id')} appt {person.get('appt')}")
grant = fuzzy_retrieval(grants, ["name", "_id", "alias"], grantid)
if not grant:
print(f"No grant found for {grantid}")
Expand Down

0 comments on commit e114e98

Please sign in to comment.