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,4 +1,4 @@
from abc import abstractmethod
import abc
from . import kinds
from .iremote import IRemote
@@ -11,7 +11,7 @@ class VbanStream(IRemote):
Defines concrete implementation for vban stream
"""
@abstractmethod
@abc.abstractmethod
def __str__(self):
pass