Skip to content

Commit

Permalink
fix dir issue after move
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Loftus committed Dec 23, 2023
1 parent 386386a commit 53d9d61
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion utils/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from talon import Module, actions, ui, Context, ctrl, clip, registry
import os, requests
from .HTMLbuilder import HTMLBuilder

from ..lib.HTMLbuilder import HTMLBuilder
import threading

mod = Module()
Expand Down Expand Up @@ -55,6 +56,7 @@ def explore_tags():
active_contexts = registry.tags
builder = HTMLBuilder()
builder.title("Talon Tags")
builder.h1("Currently Active Tags")
for context in active_contexts:
builder.p(context)
builder.render()
Expand All @@ -64,6 +66,7 @@ def explore_settings():
active_settings = registry.settings
builder = HTMLBuilder()
builder.title("Talon Settings")
builder.h1("Talon Settings and their Values")
for setting in active_settings:
builder.p(f"{setting}, {active_settings[setting]}")
builder.render()
Expand Down

0 comments on commit 53d9d61

Please sign in to comment.