Skip to content

Instantly share code, notes, and snippets.

View smilingprogrammer's full-sized avatar

Oyewale Abdulsobur smilingprogrammer

View GitHub Profile
import copy
class BaseAdapter():
@abstractmethod
def initialize(self, config: dict) -> None: ...
@abstractmethod
def step(self, resource: int) -> float: ...
@abstractmethod
def clone(self) -> "BaseAdapter": ...