import abc namespace

This commit is contained in:
2026-02-08 09:09:59 +00:00
parent e58d6c7242
commit 911d2f64a6
6 changed files with 16 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
import abc
import logging
from abc import abstractmethod
from enum import IntEnum
from functools import cached_property
from typing import Iterable
@@ -115,7 +115,7 @@ class FactoryBase(VbanCmd):
)
@property
@abstractmethod
@abc.abstractmethod
def steps(self):
pass