-
Notifications
You must be signed in to change notification settings - Fork 343
Closed
Labels
Description
Environment:
- OS X 10.14.3
- firebase-admin 2.15.1
- python 3.6.7 with Anaconda
Steps to reproduce:
from firebase_admin import db
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-28-f1634322845c> in <module>
----> 1 from firebase_admin.db import Query
~/anaconda3/lib/python3.6/site-packages/firebase_admin/db.py in <module>
31
32 import firebase_admin
---> 33 from firebase_admin import _http_client
34 from firebase_admin import _sseclient
35 from firebase_admin import _utils
~/anaconda3/lib/python3.6/site-packages/firebase_admin/_http_client.py in <module>
28 DEFAULT_RETRY_CONFIG = retry.Retry(
29 connect=1, read=1, status=4, status_forcelist=[500, 503],
---> 30 raise_on_status=False, backoff_factor=0.5)
31
32
TypeError: __init__() got an unexpected keyword argument 'status'
I've tried this in a jupyter notebook and in the inline client. Someone else has the error on stackoverflow as well