add edit name
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
from __future__ import annotations
|
||||
from typing import Union
|
||||
from copy import deepcopy
|
||||
|
||||
from enum import Enum
|
||||
|
||||
@@ -13,6 +13,8 @@ class Recipe:
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
def copy(self) -> Recipe:
|
||||
return deepcopy(self)
|
||||
|
||||
class StepType(Enum):
|
||||
SECTION = 0
|
||||
|
||||
Reference in New Issue
Block a user