Skip to content

Commit 25b8388

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 45132b0 commit 25b8388

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

jupyter_server_proxy/standalone/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
1+
from __future__ import (
2+
annotations, # Allows type subscripts (like tuple[str, int]) in Python 3.8
3+
)
24

35
import argparse
46
import logging

jupyter_server_proxy/standalone/proxy.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
1+
from __future__ import (
2+
annotations, # Allows type subscripts (like tuple[str, int]) in Python 3.8
3+
)
24

35
import os
46
import re

0 commit comments

Comments
 (0)