Skip to content
Snippets Groups Projects
Commit 8b024b36 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Fix type hint in test_server_side_scripting for Python < 3.9

parent 951a5165
No related branches found
No related tags found
1 merge request!143Release 0.15.0
Pipeline #49242 passed with warnings
......@@ -28,8 +28,9 @@ from unittest.mock import Mock
from linkahead.utils import server_side_scripting as sss
from linkahead.connection.mockup import MockUpServerConnection, MockUpResponse
from linkahead import configure_connection
from typing import List
_REMOVE_FILES_AFTERWARDS: list[str] = []
_REMOVE_FILES_AFTERWARDS: List[str] = []
def setup_module():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment