From 9f5ee5e652637497749dc8f3227e496b190f9df9 Mon Sep 17 00:00:00 2001 From: "Emmanuel O. Adegbite" Date: Tue, 16 Jul 2024 15:46:04 +0100 Subject: [PATCH] formatting --- pyfcm/baseapi.py | 4 ++-- setup.py | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pyfcm/baseapi.py b/pyfcm/baseapi.py index 0f774b9..147050b 100644 --- a/pyfcm/baseapi.py +++ b/pyfcm/baseapi.py @@ -1,4 +1,4 @@ -#from __future__ import annotations +# from __future__ import annotations import json import os @@ -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 diff --git a/setup.py b/setup.py index f30ce64..294940d 100644 --- a/setup.py +++ b/setup.py @@ -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