mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix type annotation
This commit is contained in:
@@ -104,7 +104,7 @@ def read_svg_depth(filename: str) -> int:
|
||||
return None
|
||||
|
||||
|
||||
def write_svg_depth(filename: str, depth:int) -> None:
|
||||
def write_svg_depth(filename: str, depth: int) -> None:
|
||||
"""Write the depth to SVG file as a comment at end of file
|
||||
"""
|
||||
with open(filename, 'a') as f:
|
||||
|
||||
Reference in New Issue
Block a user