Skip to content

Commit

Permalink
chore: fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Apr 14, 2024
1 parent bc9a9cd commit 77f1ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion papis/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def __enter__(self) -> "TemporaryConfiguration":
self.libdir = os.path.join(self.tmpdir, "lib")
self.configdir = os.path.join(self.tmpdir, "papis")
self.configfile = os.path.join(self.configdir, "config")
self.configscripts = os.path.join(self.configdir, "scrits")
self.configscripts = os.path.join(self.configdir, "scripts")

os.makedirs(self.libdir)
os.makedirs(self.configdir)
Expand Down
2 changes: 1 addition & 1 deletion papis/zenodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def get_data(record_id: str) -> Dict[str, Any]:
if isinstance(json_data, dict):
return json_data
else:
logger.error("Zenodo reponse has unsupported type: '%s'",
logger.error("Zenodo response has unsupported type: '%s'",
type(json_data).__name__)
return {}

Expand Down

0 comments on commit 77f1ba7

Please sign in to comment.