diff options
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, |