Skip to content

Commit a8163de

Browse files
[skip-ci] docs: docs only
1 parent 10bb144 commit a8163de

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/optimum/rbln/diffusers/configurations/models/configuration_autoencoder_kl_temporal_decoder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from typing import Optional, Tuple
15+
from typing import Any, Optional, Tuple
1616

1717
from ....configuration_utils import RBLNModelConfig
1818

@@ -26,7 +26,7 @@ def __init__(
2626
num_frames: Optional[int] = None,
2727
decode_chunk_size: Optional[int] = None,
2828
vae_scale_factor: Optional[float] = None,
29-
**kwargs,
29+
**kwargs: Any,
3030
):
3131
"""
3232
Args:

src/optimum/rbln/diffusers/configurations/models/configuration_unet_spatio_temporal_condition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from typing import Optional, Tuple
15+
from typing import Any, Optional, Tuple
1616

1717
from ....configuration_utils import RBLNModelConfig
1818

@@ -26,7 +26,7 @@ def __init__(
2626
sample_size: Optional[Tuple[int, int]] = None,
2727
in_features: Optional[int] = None,
2828
num_frames: Optional[int] = None,
29-
**kwargs,
29+
**kwargs: Any,
3030
):
3131
"""
3232
Args:

src/optimum/rbln/diffusers/configurations/pipelines/configuration_stable_video_diffusion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from typing import Optional
15+
from typing import Any, Optional
1616

1717
from ....configuration_utils import RBLNModelConfig
1818
from ....transformers import RBLNCLIPVisionModelWithProjectionConfig
@@ -35,7 +35,7 @@ def __init__(
3535
num_frames: Optional[int] = None,
3636
decode_chunk_size: Optional[int] = None,
3737
guidance_scale: Optional[float] = None,
38-
**kwargs,
38+
**kwargs: Any,
3939
):
4040
"""
4141
Args:

0 commit comments

Comments
 (0)