Moved process_csv module to new location

This commit is contained in:
Candifloss 2025-02-12 15:33:45 +05:30
parent 1eea7104ad
commit f3aa7904f3
2 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ from flask import Blueprint, request, render_template, redirect, session
import csv import csv
from io import TextIOWrapper from io import TextIOWrapper
from definitions.models import Asset, db from definitions.models import Asset, db
from process_csv import get_csv_data # Import the CSV processing function from functions.process_csv import get_csv_data # Import the CSV processing function
from config import item_attributes # Import the configuration from config import item_attributes # Import the configuration
# Create a Blueprint for upload # Create a Blueprint for upload