From 3c9a00baf26c6ace843929150ca098c68f1f0f95 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:37:48 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .../dummyentrypoint/test_jsp_dummyentrypoint/__init__.py | 1 + .../dummyentrypoint/test_jsp_dummyentrypoint/httpinfo.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/__init__.py b/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/__init__.py index ca46aaeb..a920c553 100644 --- a/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/__init__.py +++ b/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/__init__.py @@ -1,6 +1,7 @@ """ Test whether ServerProcessEntryPoint can be configured using traitlets """ + import sys from pathlib import Path diff --git a/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/httpinfo.py b/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/httpinfo.py index 525be85e..07d01ddb 100644 --- a/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/httpinfo.py +++ b/tests/resources/dummyentrypoint/test_jsp_dummyentrypoint/httpinfo.py @@ -1,6 +1,7 @@ """ Simple webserver to respond with an echo of the sent request. """ + import argparse from http.server import BaseHTTPRequestHandler, HTTPServer