Tests: remove unused Python modules from freshclam tests

The 'cgi' module is deprecrated and will be removed in Python 3.13.
We weren't using it anyways.

Fixes: https://github.com/Cisco-Talos/clamav/issues/1327
This commit is contained in:
Micah Snyder 2024-08-28 15:07:27 -04:00
parent 9a54515db2
commit 113c217bef
No known key found for this signature in database
GPG key ID: 3449E631914956D0

View file

@ -10,14 +10,10 @@ import os
from pathlib import Path
import platform
import shutil
import subprocess
import sys
import time
import unittest
from functools import partial
from http.server import HTTPServer, BaseHTTPRequestHandler
import cgi
import testcase