Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
olucurious committed Jul 16, 2024
1 parent a0e1dc9 commit 9f5ee5e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyfcm/baseapi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#from __future__ import annotations
# from __future__ import annotations

import json
import os
Expand Down Expand Up @@ -34,7 +34,7 @@ def __init__(
proxy_dict=None,
env=None,
json_encoder=None,
adapter=None
adapter=None,
):
"""
Override existing init function to give ability to use v1 endpoints of Firebase Cloud Messaging API
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


install_requires = ["requests", "urllib3>=1.26.0", "google-auth>=2.22.0", "aiohttp==3.8.6"]
install_requires = [
"requests",
"urllib3>=1.26.0",
"google-auth>=2.22.0",
"aiohttp==3.8.6",
]
tests_require = ["pytest"]

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

0 comments on commit 9f5ee5e

Please sign in to comment.