From a22f6e6c5f0e4c769b598303c159c7af4bba5900 Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Wed, 15 Jul 2026 10:23:14 +0000 Subject: [PATCH] trivial: fix provider type annotations This change fixes the provider "replicate_disks" type annotations: "volumes_info" contains the wrong type and "source_environment" doesn't have a type annotation. --- coriolis/providers/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coriolis/providers/base.py b/coriolis/providers/base.py index 59f348158..8370bf3de 100644 --- a/coriolis/providers/base.py +++ b/coriolis/providers/base.py @@ -899,10 +899,10 @@ def replicate_disks( connection_info: dict, source_environment: dict, instance_name: str, - source_resources, + source_resources: dict, source_conn_info: dict, target_conn_info: dict, - volumes_info: list[bool], + volumes_info: list[dict], incremental: bool, ) -> list[dict]: """Replicate instance disks to the destination platform.