LttP: move _hint_text to SubClasses (#2532)

This commit is contained in:
Fabian Dill
2024-01-16 17:23:18 +01:00
committed by GitHub
parent 49ecd4b9c1
commit 602c2966fc
2 changed files with 7 additions and 3 deletions

View File

@@ -1056,9 +1056,6 @@ class Location:
@property
def hint_text(self) -> str:
hint_text = getattr(self, "_hint_text", None)
if hint_text:
return hint_text
return "at " + self.name.replace("_", " ").replace("-", " ")