following lazy-beancount.xyz

This commit is contained in:
Visual Studio Web Coder
2025-08-17 16:06:59 +00:00
parent dd83e36d75
commit e908bad8a1
4 changed files with 2 additions and 35 deletions

15
import.py Normal file
View File

@@ -0,0 +1,15 @@
# config.py
import sys
import os
# Voeg de map van dit bestand toe aan de Python-zoekpaden.
# Dit zorgt ervoor dat je importer gevonden kan worden.
sys.path.insert(0, os.path.dirname(__file__))
# De importregel hieronder zal nu correct werken
from postbank_csv_importer import MyCSVImporter
CONFIG = [
MyCSVImporter()
]