Adrian Kalbarczyk

Results 14 comments of Adrian Kalbarczyk

No i don't. I tested it on completely new project without any additional dependencies.

It is fixed but not uploaded to PyPI. Use the Github version. Greetings, Adrian Kalbarczyk https://kalbarczyk.co On Sat, Aug 13, 2022 at 9:12 PM Gean Michel Ceretta < ***@***.***> wrote:...

Thanks for the PR. What problem does it solve? From what I remember, try..catch was a little bit faster and made the code work on Python 2 and 3, while...

and also int to null

This is certainly an ObjectPath's bug. Greetings, Adrian Kalbarczyk http://kalbarczyk.co ᐧ On Mon, Oct 22, 2018 at 1:40 PM LC wrote: > I have a json data structure that looks...

Actual data in collection: ```js { inviterId: TEAM_OWNER_ID, teamId: TEAM_A_ID, inviteeId: USER_NOT_IN_MY_TEAM_ID, } ``` Test case: ```js it('Inviter can read their invitations to a team', async () => { const...

@munificent could that also be possible for double?

@munificent In Dart we can do this: ```dart fn(data) { final ( :int a, :String b, ) = data; print('$a, $b'); } ``` but not this: ```dart fn(( :int a,...

In my opinion, labeling freezed unions as "legacy" in the documentation is misleading. Dart sealed classes lack features like copyWith and other utilities generated by freezed. For example: ```dart @freezed...

Any chance for change in docs? Currently, it says: > (Legacy) Union types and Sealed classes Should be > Union types and Sealed classes > (Legacy) Using pattern matching to...