Coding 2022-09-28

Tags:
By Max Woerner Chase

All right, making changes to the future branch of MOTR. I could work on the documentation, or I could address some bits in the code that just annoy me when I think about them...

diff --git a/src/motr/motr_app.py b/src/motr/motr_app.py
--- a/src/motr/motr_app.py
+++ b/src/motr/motr_app.py
@@ -15,7 +15,6 @@ if typing.TYPE_CHECKING:

 # configuration defaults
 CONFIG = init_defaults("motr")
-CONFIG["motr"]["foo"] = "bar"


 class MOTR(App):
diff --git a/src/motr/templates/command1.jinja2 b/src/motr/templates/command1.jinja2
deleted file mode 100644
--- a/src/motr/templates/command1.jinja2
+++ /dev/null
@@ -1,4 +0,0 @@
-
-Example Template (templates/command1.jinja2)
-
-Foo => {{ foo }}

Aw, yeah, that's the good stuff.

The next thing I'd really like to look into is fixing up the signal handling interactions, but that could take a while and it's late, so instead, I'll figure out what I want to focus on first. Probably the revamp of runtime actions/tasks/whatever. That should be fiddly, and break everything before making it better, and I want to be sure it actually works.

First I get that working, then I get it documented. Then I start documenting things one level up.

For now, I'm going to wind down for a while. Still working on getting a good schedule together...

Good night.