Commit 6e3c83d6 authored by Ariyasuthan's avatar Ariyasuthan

Deleted methodModifierToCode.py, methodToCode.py files

parent e041cd05
from abc import ABC, abstractmethod
class MethodModifierToCode(ABC):
@abstractmethod
def formatted_modifier(self) -> str:
pass
@abstractmethod
def formatted_override(self) -> str:
pass
from abc import ABC, abstractmethod
class MethodToCode(ABC):
@abstractmethod
def get_formatted_methods(self) -> str:
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment