Skip to content

Commit 9f5ee5e

Browse files
committed
formatting
1 parent a0e1dc9 commit 9f5ee5e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

pyfcm/baseapi.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#from __future__ import annotations
1+
# from __future__ import annotations
22

33
import json
44
import os
@@ -34,7 +34,7 @@ def __init__(
3434
proxy_dict=None,
3535
env=None,
3636
json_encoder=None,
37-
adapter=None
37+
adapter=None,
3838
):
3939
"""
4040
Override existing init function to give ability to use v1 endpoints of Firebase Cloud Messaging API

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ def read(fname):
1515
return open(os.path.join(os.path.dirname(__file__), fname)).read()
1616

1717

18-
install_requires = ["requests", "urllib3>=1.26.0", "google-auth>=2.22.0", "aiohttp==3.8.6"]
18+
install_requires = [
19+
"requests",
20+
"urllib3>=1.26.0",
21+
"google-auth>=2.22.0",
22+
"aiohttp==3.8.6",
23+
]
1924
tests_require = ["pytest"]
2025

2126
# We can't get the values using `from pyfcm import __meta__`, because this would import

0 commit comments

Comments
 (0)