Skip to content

Commit 1be3c06

Browse files
committed
Allow advanced annotations in Python 3.8
1 parent a0755ba commit 1be3c06

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

jupyter_server_proxy/standalone/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations # For Python 3.8 compatibility
2+
13
import argparse
24
import logging
35
import os

jupyter_server_proxy/standalone/proxy.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations # For Python 3.8 compatibility
2+
13
import os
24
import re
35
import ssl

0 commit comments

Comments
 (0)