We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc6366f commit f7420d0Copy full SHA for f7420d0
pyrebase/pyrebase.py
@@ -252,7 +252,7 @@ def build_request_url(self, token):
252
parameters['auth'] = token
253
for param in list(self.build_query):
254
if type(self.build_query[param]) is str:
255
- parameters[param] = quote('"' + self.build_query[param] + '"')
+ parameters[param] = '"' + self.build_query[param] + '"'
256
elif type(self.build_query[param]) is bool:
257
parameters[param] = "true" if self.build_query[param] else "false"
258
else:
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name='Pyrebase4',
5
- version='4.2.0',
+ version='4.3.0',
6
url='https://github.com/nhorvath/Pyrebase4',
7
description='A simple python wrapper for the Firebase API with current deps',
8
author='nhorvath',
0 commit comments