Skip to content

Commit

Permalink
Fix lru_cache below Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
liang2kl committed Apr 4, 2023
1 parent 6016803 commit dfd25bb
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
@lru_cache(max_size=None)
def get_git_commit_timestamp(
self,
path: str,
Expand Down

0 comments on commit dfd25bb

Please sign in to comment.