Skip to content

Commit

Permalink
Fix argument name of lru_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
liang2kl committed Apr 4, 2023
1 parent dfd25bb commit eb0d0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkdocs_blogging_plugin/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _get_repo(self, path: str) -> Git:
return self.repo_cache[path]


@lru_cache(max_size=None)
@lru_cache(maxsize=None)
def get_git_commit_timestamp(
self,
path: str,
Expand Down

0 comments on commit eb0d0e1

Please sign in to comment.