Skip to content

Commit 2d1e607

Browse files
authored
Fix flake8 linting error (#11757)
1 parent bb74aec commit 2d1e607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sphinx/environment/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ def _last_modified_time(filename: str | os.PathLike[str]) -> int:
751751
def _format_modified_time(timestamp: int) -> str:
752752
"""Return an RFC 3339 formatted string representing the given timestamp."""
753753
seconds, fraction = divmod(timestamp, 10**6)
754-
return time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(seconds)) + f'.{fraction//1_000}'
754+
return time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(seconds)) + f'.{fraction // 1_000}'
755755

756756

757757
def _traverse_toctree(

0 commit comments

Comments
 (0)