Skip to content

Commit 6c194eb

Browse files
committed
Remove functools.cache
1 parent 3ef52a6 commit 6c194eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build_docs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import json
2929
import logging
3030
import logging.handlers
31-
from functools import total_ordering, cache
31+
from functools import total_ordering
3232
from os import readlink
3333
import platform
3434
import re
@@ -1151,7 +1151,6 @@ def build_docs(args) -> bool:
11511151
return all_built_successfully
11521152

11531153

1154-
@cache
11551154
def format_seconds(seconds: float) -> str:
11561155
hours, remainder = divmod(seconds, 3600)
11571156
minutes, seconds = divmod(remainder, 60)

0 commit comments

Comments
 (0)