From c7c16f65db51dddd8c5f86f3b47a0ca627139faa Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Mon, 9 Feb 2026 20:17:06 +0000 Subject: [PATCH] fix: add missing Any import to armor_system.py --- core/armor_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/armor_system.py b/core/armor_system.py index ffc0c14..77cd343 100644 --- a/core/armor_system.py +++ b/core/armor_system.py @@ -13,7 +13,7 @@ Implements Entropia Universe armor mechanics: from dataclasses import dataclass, field from decimal import Decimal -from typing import Optional, Dict, List, Tuple, ClassVar +from typing import Optional, Dict, List, Tuple, ClassVar, Any from enum import Enum, auto