Spaces:
Runtime error
Runtime error
File size: 124 Bytes
2eafbc4 |
1 2 3 4 5 6 7 8 |
from abc import ABC, abstractmethod
class GraphNone(ABC):
@abstractmethod
def get_type(self) -> str:
pass
|