Files
Igor20264 516abe7b83
Python application / build (push) Has been cancelled
BigUpdate
2026-09-03 10:44:08 +03:00

12 lines
267 B
Python

from abc import ABC, abstractmethod
class RequiresNumbering(ABC):
def __init__(self, category: str):
self.numbering_category = category
self.unique_name: str | None = None
@abstractmethod
def set_number(self, number: str):
pass