Skip to content

Commit

Permalink
Allow advanced annotations in Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jwindgassen committed Nov 15, 2024
1 parent a0755ba commit 1be3c06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions jupyter_server_proxy/standalone/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations # For Python 3.8 compatibility

import argparse
import logging
import os
Expand Down
2 changes: 2 additions & 0 deletions jupyter_server_proxy/standalone/proxy.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations # For Python 3.8 compatibility

import os
import re
import ssl
Expand Down

0 comments on commit 1be3c06

Please sign in to comment.