updated config

This commit is contained in:
2026-03-08 12:11:12 +05:30
parent 7fdeacf0f0
commit 9f05306d6e
3 changed files with 6 additions and 5 deletions

View File

@@ -77,9 +77,9 @@ class FileProcessor:
# Choose parser by filename prefix
parser = None
if filename.startswith('ACH_'):
if filename.startswith('ACH_'):
parser = ACHParser(local_path)
elif filename.startswith('UIH_'):
elif filename.startswith('UIH_'):
parser = UIHParser(local_path)
else:
logger.warning(f"Unknown file type for parser: {filename}")