8 lines
104 B
Python
Raw Normal View History

from typing import Protocol
2024-11-01 04:12:43 -07:00
from ._task import TaskRunner
class Team(TaskRunner, Protocol):
2024-11-01 04:12:43 -07:00
pass