usawa

Signed, immutable accounting.
Info | Log | Files | Refs | Submodules | LICENSE

commit 19d6ff17f584f7fd5cd8376691e02add2588564d
parent cedb0e6412c1f0237b7b7333896446845df707ff
Author: Carlosokumu <carlosokumu254@gmail.com>
Date:   Thu,  5 Mar 2026 13:04:39 +0300

remove unused params, pass fs resolver path as an arg

Diffstat:
Mdummy/usawa/gui/main_window.py | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dummy/usawa/gui/main_window.py b/dummy/usawa/gui/main_window.py @@ -17,16 +17,15 @@ class UsawaMainWindow(Gtk.ApplicationWindow): self.set_title("Usawa") self.set_default_size(1000, 600) - # Main box main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0) self.set_child(main_box) cfg = self.get_application().cfg self.client = UnixClient(path=cfg.get("SERVER_SOCKET_FILE_PATH")) - repository = LedgerRepository(ledger_path=ledger_path,unix_client=self.client) + repository = LedgerRepository(ledger_path=ledger_path,unix_client=self.client,fs_path=cfg.get("FS_RESOLVER_STORE_PATH")) - entry_service = EntryService(repository=repository,unixClient= self.client) + entry_service = EntryService(repository=repository) self.entry_controller = EntryController(entry_service=entry_service) self.entry_controller.add_entry_created_listener(self.refresh_entries)