[bindings] Format with yapf (precommit will reformat)
This commit is contained in:
@@ -6,6 +6,7 @@ from Base.Metadata import export, class_declarations
|
||||
from Base.PyObjectBase import PyObjectBase
|
||||
from typing import Any, List, Dict, overload, Optional
|
||||
|
||||
|
||||
@export(
|
||||
Constructor=True,
|
||||
Delete=True,
|
||||
@@ -52,13 +53,20 @@ class Metadata(PyObjectBase):
|
||||
"""
|
||||
|
||||
@overload
|
||||
def __init__(self) -> None: ...
|
||||
def __init__(self) -> None:
|
||||
...
|
||||
|
||||
@overload
|
||||
def __init__(self, metadata: "Metadata") -> None: ...
|
||||
def __init__(self, metadata: "Metadata") -> None:
|
||||
...
|
||||
|
||||
@overload
|
||||
def __init__(self, file: str) -> None: ...
|
||||
def __init__(self, file: str) -> None:
|
||||
...
|
||||
|
||||
@overload
|
||||
def __init__(self, bytes: bytes) -> None: ...
|
||||
def __init__(self, bytes: bytes) -> None:
|
||||
...
|
||||
|
||||
Name: str = ""
|
||||
"""String representing the name of this item."""
|
||||
|
||||
Reference in New Issue
Block a user