Marcel Jackwerth

Results 9 comments of Marcel Jackwerth

Maybe we could just use git's internals for this? Would allow configuration as well (we'd have to provide default colors though which we probably have to pull out of the...

@BorjaEst This would cause any test to create the database (which can be an expensive operation) even if the specific test actually doesn't need it.

In my case this was a problem in `useTimeoutFn` (which is used under the hood) which doesn't re-render when `isReady` changes.

I guess `ValueBase` needs to accept `null` for forcing controlled mode? ```diff export interface ValueBase { /** The current value (controlled). */ - value?: T, + value?: T | null,...

@jace Make sure that you're not re-assigning `hybrid_property` (which is what the error message points out). The following should work: ``` if TYPE_CHECKING: hybrid_property = property else: from sqlalchemy.ext.hybrid import...

The plugin requires `uselist=True` to be specified (probably for performance reasons).

> I think this is handled inside SQLAlchemy itself. I might be wrong here, but my understanding is that multi-db support via bind-keys is added by `flask_sqlalchemy` as [documented here](https://flask-sqlalchemy.palletsprojects.com/en/2.x/binds/)....

For people who are looking for a baseline implementation (with `react-popper`): ```tsx import type { VirtualElement as IVirtualElement } from "@popperjs/core"; import { ReactNode, useEffect, useState } from "react"; import...

> I have a case where I use: > > ``` > with pytest.raises(Exception, match='Parsing error'): > call_my_func() > ``` > > Currently, B017 catches this as a problematic but...