Jakub Boukal

Results 9 issues of Jakub Boukal

Hello, :wave: I have a following code in `foo.py`: ``` 1 class FooBar: 2 3 def foo(self): 4 pass 5 6 7 # Comment 8 9 def bar(self): 10 pass...

Hello :wave: This adds `assert_called` and other unittest-like methods to `aioresponses`. Resolves: #132 What are your thoughts? Cheers :beers:

Hi & thanks for this cool library, I spot a tiny issue while calling GET on `/notify/api/update/` without `flag` attribute. This should fix it. Cheers :ok_hand: P.S. This is my...

sorry @sobolevn I've realized one thing. Getting list of paths matching a non-existent pattern, returns empty list, which differs from getting a paths of parent folder (empty string). ```py >>>...

## Motivation I've just noticed a dead link to Tauri Framework ## Changes Link to Tauri Framework ## Additional Comments This looks like an awesome project! Keep it up :rocket:

These includes will fix the issue described in #313 EDIT: Includes `admin/js/jquery.init.js` as defined in [django.admin](https://github.com/django/django/blob/4.2.10/django/contrib/admin/options.py#L733)

Hi and thanks for an awesome library :smiley_cat: I've run into an issue when using `django-ajax-select` outside of Django Admin after upgrading to `3.0.1+` ![image](https://github.com/crucialfelix/django-ajax-selects/assets/7142785/3db92b3c-e869-4375-920f-03a63629df82) The issue is `Uncaught TypeError:...

I have a settings like this ```py from os import environ from split_settings.tools import optional, include ENV = environ.get('ENV', 'local') include( 'components/base.py', 'components/database.py', optional('local_settings.py' if ENV == 'local' else None),...

* Add black to pre-commit hooks * Apply black formatting to codebase