Skip to content

Commit

Permalink
formatting: change style of optional args in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
rien333 committed Dec 6, 2024
1 parent 0fdd902 commit bac6741
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mdto/mdto.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,10 +788,10 @@ def create_bestand(
informatieobject (TextIO | str): path or file-like object that
represents an MDTO Informatieobject in XML form.
Used to infer values for <isRepresentatieVan>.
naam (str, optional): value of <naam>. Defaults to the basename of `infile`
url (str, optional): value of <URLBestand>
quiet (bool, optional): silence non-fatal warnings
force (bool, optional): do not exit when encountering would-be invalid tag values
naam (Optional[str]): value of <naam>. Defaults to the basename of `infile`
url (Optional[str]): value of <URLBestand>
quiet (Optional[bool]): silence non-fatal warnings
force (Optional[bool]): do not exit when encountering would-be invalid tag values
Example:
```python
Expand Down

0 comments on commit bac6741

Please sign in to comment.