From 883ce0d064939a34507ec6170bfcd21020942f6f Mon Sep 17 00:00:00 2001 From: Corvo <60719165+brothercorvo@users.noreply.github.com> Date: Wed, 18 Jun 2025 11:48:43 -0300 Subject: [PATCH] Fix flake8 errors in tests __init__ --- tests/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/__init__.py b/tests/__init__.py index 52a6f32..75d968f 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1 +1,6 @@ -import os, sys; sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) +"""Test package configuration.""" + +import os +import sys + +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))