Skip to content

Commit 34d752c

Browse files
committed
DEVX-467: Fix missing import
1 parent 009c607 commit 34d752c

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

formsg/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from typing import Any
77
from typing import Dict
88
from typing import Mapping
9+
from typing import Optional
910
from urllib.parse import urlparse
1011

1112
import requests

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='formsg',
9-
version='0.1.5',
9+
version='0.1.6',
1010
packages=['formsg'],
1111
description='A Python SDK for handling FormSG webhooks.',
1212
long_description=README,
@@ -17,6 +17,7 @@
1717
license='MIT License',
1818
install_requires=[
1919
'pynacl>=1.4.0',
20+
'requests',
2021
],
2122
python_requires='>=3',
2223
keywords='django cache',

0 commit comments

Comments
 (0)