YPCrumble
YPCrumble
For anyone looking to use this right away, you can install Pycycle with this commit via: ``` pip install git+git://github.com/bndr/pycycle.git@44cd59843259cecc1b6f811c157733c5fcad16bd ``` This fixed the issue for me.
@stevepeak I'd be happy to help out - I need to go through this list for Growth Hacking purposes anyway so was planning to submit to each of these. My...
Thanks for building this library! Experiencing the same issue. If we're fixing the return values, shouldn't the iOS return value be one array rather than a nested array, i.e., return:...
@fgmacedo thanks for your update! I ended up going with flags on my model and rolling my own state machine but it wasn't an ideal solution. I'm not 100% sure...
I'm encountering the same issue. In my case the error appears related to a conflict with SimpylFold. The error only happens if my code is folded - if I expand...
Both of these wrappers have switched the package to GPLv3 licensing - it would be nice if one could revert to Bottlenose's Apache license or move to a permissive license....
A mock of the Amazon SDK's return value would also work. You would be able to use that mock for unit testing this application, and as a developer I could...
I was able to get this to work (somewhat) by setting the following in `conftest.py` based on @graingert 's suggestion: ``` def pytest_collection_modifyitems(items): for item in items: for tag in...
`CREATE_SESSION_ON_LOGIN` doesn't enable session authentication - there is a sessionid set in the `set_password` method but it doesn't appear to be created anywhere else. For instance, if a user logs...
@haxoza makes sense. As I think through it, I can't think of a field other than email and username that would make sense for default sanitization. I also can't think...