Skip to content

Commit

Permalink
Fix typing syntqx
Browse files Browse the repository at this point in the history
CURA-12138
  • Loading branch information
wawanbreton committed Oct 7, 2024
1 parent e439222 commit d3d2ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UM/FileHandler/WriteFileJob.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class WriteFileJob(Job):
The writer defines what the result of this job is.
"""

def __init__(self, writer: Optional[FileWriter], stream: Union[io.BytesIO, io.StringIO], data: Any, mode: int, writer_args: Optional[Dict[str: Any]] = None) -> None:
def __init__(self, writer: Optional[FileWriter], stream: Union[io.BytesIO, io.StringIO], data: Any, mode: int, writer_args: Optional[Dict[str, Any]] = None) -> None:
"""Creates a new job for writing.
:param writer: The file writer to use, with the correct MIME type.
Expand Down

0 comments on commit d3d2ac9

Please sign in to comment.