Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 3, 2024
1 parent 45132b0 commit 25b8388
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion jupyter_server_proxy/standalone/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
from __future__ import (
annotations, # Allows type subscripts (like tuple[str, int]) in Python 3.8
)

import argparse
import logging
Expand Down
4 changes: 3 additions & 1 deletion jupyter_server_proxy/standalone/proxy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
from __future__ import (
annotations, # Allows type subscripts (like tuple[str, int]) in Python 3.8
)

import os
import re
Expand Down

0 comments on commit 25b8388

Please sign in to comment.