You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…d#24)
* Support for Python3 library in Python2
* Further fixes for Python2
* Another Python2 pitfall in testing for string types
* Python2 valid use of super()
* Dropping parameter specific to Python 3.6
* Typo in comments; this surely refers to the Group, not the User
* Parameterize field 'scim_id' so classes that override SCIMUser and SCIMGroup can use a different field name
* Allow adapters to indicate the lookup_field instead of hardcoding as scim_id
* Define lookup_field as a property to be able to invoke the adapter
* Getting the lookup_field from superclass SCIMView
* Fix: getattr() takes no keyword arguments
* Revert unneeded spacing changes
Hello,
I had some problem related to the function interface of execute_sql in silk/sql.py.
Your interface is:
With some code to retrieve the result_type keyword:
However the interface in Django is different (https://github.com/django/django/blob/master/django/db/models/sql/compiler.py):
In the case where we call without specifying the keyword:
execute_sql('single')
Your code doesn't give the expected results.
The text was updated successfully, but these errors were encountered: