From ffee09f95748118b3f8848309f2eebee9aab7e76 Mon Sep 17 00:00:00 2001 From: Mickael B Date: Thu, 24 Oct 2024 12:52:54 +0200 Subject: [PATCH] correction on stats file --- deevirt_schema/api/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deevirt_schema/api/stats.py b/deevirt_schema/api/stats.py index 343f619..5a00b3a 100644 --- a/deevirt_schema/api/stats.py +++ b/deevirt_schema/api/stats.py @@ -1,6 +1,6 @@ from typing import Optional from pydantic import BaseModel, Field -from ..libvirt.events import Stats +from ..libvirt.dom.stats import Stats class MemorySwap(BaseModel): swp_in:Optional[int] = Field(default=None)