Fix type annotation

This commit is contained in:
jfbu
2019-08-01 18:27:50 +02:00
parent 51523a7c07
commit 4732ec5edf

View File

@@ -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: