diff options
author | robot-piglet <[email protected]> | 2025-06-18 23:55:52 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-06-19 00:06:55 +0300 |
commit | 61ea5fc0cd73730d5ae6a9186d8c15057f183095 (patch) | |
tree | 31ddc3fcbabb680d9ce733ea36f581a6d062aff9 /contrib/python/fonttools/fontTools/misc/loggingTools.py | |
parent | 2fcfb855cd7780ab07751cc16c80a0a58168668a (diff) |
Intermediate changes
commit_hash:283b0c2ecb46f54501d7d1b92643c0090cebaa95
Diffstat (limited to 'contrib/python/fonttools/fontTools/misc/loggingTools.py')
-rw-r--r-- | contrib/python/fonttools/fontTools/misc/loggingTools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/fonttools/fontTools/misc/loggingTools.py b/contrib/python/fonttools/fontTools/misc/loggingTools.py index 78704f5a9aa..be6c2d369b6 100644 --- a/contrib/python/fonttools/fontTools/misc/loggingTools.py +++ b/contrib/python/fonttools/fontTools/misc/loggingTools.py @@ -284,7 +284,7 @@ class Timer(object): """ # timeit.default_timer choses the most accurate clock for each platform - _time = timeit.default_timer + _time: Callable[[], float] = staticmethod(timeit.default_timer) default_msg = "elapsed time: %(time).3fs" default_format = "Took %(time).3fs to %(msg)s" |