We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't get any results from get_object_details as an if statement on line 200 always fails. Any help would be appreciated.
Python == 3.7.3 Flask-SimpleLDAP == 1.3.0
if type(records[0][1]) == 'dict' returns False. print(type(records[0][1])) outputs <class 'dict'>
if type(records[0][1]) == 'dict'
False
print(type(records[0][1]))
<class 'dict'>
It appears as though changing the line to if isinstance(records[0][1], dict): fixes the problem.
if isinstance(records[0][1], dict):
The text was updated successfully, but these errors were encountered:
9a81914
Fixed in v1.4.0.
Sorry, something went wrong.
No branches or pull requests
I can't get any results from get_object_details as an if statement on line 200 always fails.
Any help would be appreciated.
Python == 3.7.3
Flask-SimpleLDAP == 1.3.0
if type(records[0][1]) == 'dict'
returnsFalse
.print(type(records[0][1]))
outputs<class 'dict'>
It appears as though changing the line to
if isinstance(records[0][1], dict):
fixes the problem.The text was updated successfully, but these errors were encountered: