diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-01-29 12:23:15 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-01-29 12:23:15 +0100 |
commit | 57327d3df562736cad9e278e13beeb55bf3b52ed (patch) | |
tree | aaba60bfcc7bdf27b151d97a46b2e82fc308a806 /tagit | |
parent | bfb86bdd23c2fb7211636841545b4e003f07b643 (diff) | |
download | tagit-57327d3df562736cad9e278e13beeb55bf3b52ed.tar.gz tagit-57327d3df562736cad9e278e13beeb55bf3b52ed.tar.bz2 tagit-57327d3df562736cad9e278e13beeb55bf3b52ed.zip |
cleanup
Diffstat (limited to 'tagit')
-rw-r--r-- | tagit/apps/port-config.yaml | 3 | ||||
-rw-r--r-- | tagit/tiles/__init__.py | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/tagit/apps/port-config.yaml b/tagit/apps/port-config.yaml index 9d3d147..5e874ef 100644 --- a/tagit/apps/port-config.yaml +++ b/tagit/apps/port-config.yaml @@ -141,5 +141,6 @@ ui: Info: {} CursorTags: {} BrowserTags: {} - #Venn: {} + #SelectionTags: {} + #Geo: {} window_size: 1024x768 diff --git a/tagit/tiles/__init__.py b/tagit/tiles/__init__.py index 40345b6..f51ee2a 100644 --- a/tagit/tiles/__init__.py +++ b/tagit/tiles/__init__.py @@ -11,13 +11,11 @@ import typing from tagit.utils.builder import BuilderBase # inner-module imports -##from .anomalies import Anomalies # FIXME: skeleton only from .browser_tags import BrowserTags from .buttons import Buttons from .cursor_tags import CursorTags #from .entity_histogram import EntityHistogram from .geo import Map -#from .hints import Hints from .info import Info #from .libsummary import LibSummary #from .searchtree import Searchtree @@ -39,13 +37,11 @@ __all__: typing.Sequence[str] = ( class TileBuilder(BuilderBase): _factories = { -# #'Anomalies': Anomalies, 'BrowserTags': BrowserTags, 'Buttons': Buttons, 'CursorTags': CursorTags, # 'EntityHistogram': EntityHistogram, 'Geo': Map, -# 'Hints': Hints, 'Info': Info, # 'LibSummary': LibSummary, # 'Searchtree': Searchtree, |