diff options
Diffstat (limited to 'sphinx/ext/duration.py')
-rw-r--r-- | sphinx/ext/duration.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sphinx/ext/duration.py b/sphinx/ext/duration.py index 669baf2f1..f714dedfb 100644 --- a/sphinx/ext/duration.py +++ b/sphinx/ext/duration.py @@ -4,15 +4,14 @@ Measure durations of Sphinx processing. - :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from datetime import datetime, timedelta from itertools import islice from operator import itemgetter -from typing import Any, Dict, List -from typing import cast +from typing import Any, Dict, List, cast from docutils import nodes |