Move and split views
This commit is contained in:
parent
dac2be3074
commit
273cc31146
25 changed files with 1299 additions and 1196 deletions
|
|
@ -99,6 +99,11 @@ class FileHelpEntry:
|
|||
"text": self.entrytext,
|
||||
}
|
||||
|
||||
def __str__(self):
|
||||
return self.key
|
||||
|
||||
def __repr__(self):
|
||||
return f"<FileHelpEntry {self.key}>"
|
||||
|
||||
|
||||
class FileHelpStorageHandler:
|
||||
|
|
|
|||
|
|
@ -108,6 +108,8 @@ class HelpEntry(SharedMemoryModel):
|
|||
# HelpEntry main class methods
|
||||
#
|
||||
#
|
||||
def __str__(self):
|
||||
return str(self.key)
|
||||
|
||||
def __repr__(self):
|
||||
return f"<HelpEntry {self.key}>"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue