fix error where same prof can't be used twice for apparats
This commit is contained in:
@@ -25,9 +25,11 @@ class ApparatData:
|
||||
"profname": self.profname,
|
||||
"prof_mail": self.prof_mail,
|
||||
"prof_tel": self.prof_tel,
|
||||
"fullname": self.profname,
|
||||
"fullname": f"{self.profname.split(',')[0].strip()} {self.profname.split(',')[1].strip()}",
|
||||
}
|
||||
|
||||
def translateToFullname(self):
|
||||
|
||||
return f"{self.profname.split(',')[0].strip()} {self.profname.split(',')[1].strip()}"
|
||||
|
||||
@dataclass
|
||||
class BookData:
|
||||
|
||||
Reference in New Issue
Block a user