Ash Berlin-Taylor
Ash Berlin-Taylor
I would like the option to have the splits to live inside a tab, rather than each split contain tabs. I.e. I would like three vertically stacked windows on tab...
Edit: see https://github.com/GrahamDumpleton/wrapt/issues/172#issuecomment-822305509 for non-pytest version. Example code: ``` import wrapt @wrapt.decorator def pass_through(wrapped, instance, args, kwargs): return wrapped(*args, foo=1, **kwargs) class TestMyClass: @pass_through @classmethod def setup_class(cls, **kwargs): cls.kwargs =...
I would like this module to check my setup.py for flake8 validity, but for some reason it's not picking it up for me. Is there any setting to list other...
**Describe the bug** I made a typo in the `onDelete` parameter to the relation directive: ``` roleBindings: [RoleBinding!]! @relationship(onDelete: CASACADE) ``` This led to it not cascading deletes, nor to...
This has caused a bit of confusion to committers (missing off the `as dag`) and is just more user friendly This is on by default but can be disabled by...
The default exclude list is unconfigurable -- which is a problem for me as I have a `.../deps/...` folder that I don't want to ignore. Where this this come from,...
I'm just getting started with gopter (also being fairly new to property based testing in general) and I was trying to write a custom generator for a struct type of...
Thanks for this module - it is exactly what I want! And I ran it on one instance and it worked. Then I terminated that one and created a new...
The RBAC UI for Airflow uses a different instance of the CSRF protection, so we need to import both decorators to be CSRF exempt when under RBAC UI. Closes #73...
Disabling CSRF protection leaves user's airflow installs Vulnerable to all sorts of attacks -- CSRF protection is there for a reason and asking users to disable it is a Bad...