Shubham Dalvi

Results 10 comments of Shubham Dalvi

Hey Josh, Thanks for the quick response. I tried backporting and running it, but when I execute `$ make`, it threw some errors. > src/rogauracore.c:278:52: error: initializer element is not...

Yes, replacing `const` with `#define` fixed it.I've made a pull request, do check it. Now it compiles without any errors.But still, I am not able to figure out how to...

Okay. I'll try the old rainbow code. Thanks!

@long2ice is this supported? or is it yet to be implemented?

@MaboUhha your suggestion might work, but I'll lose all of my existing migration files.

I faced the same issue of `circular imports` The only two solutions that I found were: 1. Club both `CustomerLogin` and `DeviceClassification` into a single file 2. Remove the reverse...

> > I faced the same issue of `circular imports` > > The only two solutions that I found were: > > > > 1. Club both `CustomerLogin` and `DeviceClassification`...

Nope, that does not work either Raises error at line 238 > ~/.ven/lib/python3.8/site-packages/aiomysql/cursors.py in execute(self, query, args) 236 237 if args is not None: 238 query = query % self._escape_args(args,...

Getting tests to work was a bit tricky This code worked for me to setup fixtures ```python3 @pytest.fixture(scope="module") def client(): client = TestClient(app) yield client @pytest.fixture(scope="module", autouse=True) def initialize_tests(request): initializer(...