fix SonarQube issues: mainly unused imports
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good

This commit is contained in:
2025-11-24 08:41:46 +01:00
parent e6add823a5
commit 1158c88d43
3 changed files with 1 additions and 6 deletions

View File

@@ -1,10 +1,8 @@
import { Readable } from 'stream';
import { BUCKET, client } from '$lib/minio';
import { fail, error } from '@sveltejs/kit';
import { v4 as uuidv4 } from 'uuid';
import { db } from '$lib/server/dbService';
import { getVorgangByName, vorgangNameExists } from '$lib/server/vorgangService';
import { getVorgangByName } from '$lib/server/vorgangService';
const isRequiredFieldValid = (value: unknown) => {
if (value == null) return false;