mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-17 17:00:01 +01:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
494 B
494 B
In [ ]:
from abc import ABC, abstractmethod
from typing import Type
class Base(ABC):
@abstractmethod
def foo(self, x: int) -> int:
pass
def foo2():
Base()