-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf56686
commit b3fe9ec
Showing
4 changed files
with
178 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
''' | ||
Created on 2024-02-23 | ||
@author: wf | ||
''' | ||
from ceurws.view import View | ||
|
||
class WikidataView(View): | ||
""" | ||
Wikidata View | ||
""" | ||
|
||
def __init__(self, solution, parent): | ||
""" | ||
constructor | ||
Args: | ||
solution: the solution | ||
parent: the parent UI container | ||
""" | ||
self.solution = solution | ||
self.parent = parent | ||
self.setup_ui() | ||
|
||
def setup_ui(self): | ||
""" | ||
setup my User Interface elements | ||
""" | ||
with self.parent: | ||
pass | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters