diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-02 09:21:27 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-02 09:21:27 +0200 |
| commit | 71658d023fdbf60be6b4501372519bf8171d6e13 (patch) | |
| tree | bf9adcd6bfd60b56303dad219dfe79b003fe0818 /pyproject.toml | |
| parent | 166f82d0bfdc598099c088275d68dc42499694f9 (diff) | |
| download | firefly-cli-71658d023fdbf60be6b4501372519bf8171d6e13.tar.gz firefly-cli-71658d023fdbf60be6b4501372519bf8171d6e13.zip | |
v0.3.7 placed the @registry.command decorator above a helper
(_resolve_side) inserted between the decorator and cmd_add, so the
registry bound the helper as the "tx add" handler. Unit tests call
cmd_add directly and missed it; live CLI dispatch failed with
"_resolve_side() missing 2 required positional arguments". Move the
helper above the decorator and add a regression test asserting the
registered handler is cmd_add.
Found by live smoke test against the test instance. Also note in
resolver that Firefly returns 401 (not 404) for an unknown account id.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index a356bd8..ae35bd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "firefly-iii-agent" -version = "0.3.7" +version = "0.3.8" description = "CLI tool for agent interaction with Firefly III" readme = "README.md" requires-python = ">=3.11" |
