We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ef52a6 commit 6c194ebCopy full SHA for 6c194eb
1 file changed
build_docs.py
@@ -28,7 +28,7 @@
28
import json
29
import logging
30
import logging.handlers
31
-from functools import total_ordering, cache
+from functools import total_ordering
32
from os import readlink
33
import platform
34
import re
@@ -1151,7 +1151,6 @@ def build_docs(args) -> bool:
1151
return all_built_successfully
1152
1153
1154
-@cache
1155
def format_seconds(seconds: float) -> str:
1156
hours, remainder = divmod(seconds, 3600)
1157
minutes, seconds = divmod(remainder, 60)
0 commit comments