kiraware

Results 17 comments of kiraware

**What kind of app do you use Django Address in?** An information system for student data in university **Which country or countries do you primarily collect addresses in?** Asia **Do...

Actually this behaviour is caused by inconsistent of some default value settings in dj_rest_auth. After 3.0.0, all settings are now consistent. I notice this changed behaviour, but forgot to add...

looks like you are trying to access your API with django development server through https instead of http. django runserver only serve http not https. Make sure you type it...

Some easy workaround i found is on [stackoverflow](https://stackoverflow.com/questions/33797126/proper-way-to-remove-keys-in-dictionary-with-none-values-in-python), just remove dict element with None value. Code snapshot ```python {k: v for k, v in data.items() if v is not None}...

I would like to know if this behavior is documented and is it already included in test? If not, i suggest provide the documentation and add the test for this...

Also i wanna suggest that AddressField model look something like openid connect address claim, may have a look at https://openid.net/specs/openid-connect-core-1_0.html#AddressClaim Thanks again @banagale

Me to here https://github.com/kiraware/paspybin/actions/runs/7911211535/job/21595033660. It would be nice if codecov failing the workflow not just passed as everything is ok.

> > Me to here https://github.com/kiraware/paspybin/actions/runs/7911211535/job/21595033660. It would be nice if codecov failing the workflow not just passed as everything is ok. > > @kiraware Are you passing the param...

@jayqi Hello, I have experienced this too. That's because dependabot is not allowed to read Github Action Secrets based on this [documentation](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions). If you put CODECOV_TOKEN in the Github Secret...