Sunghyun Kim

Results 11 issues of Sunghyun Kim

My Code: ```python @adt class Result(Generic[S, E]): Success: Case[S] Error: Case[E] async def map(self, func: Callable[[S], Awaitable[Union[S, E]]]) -> "Result[S, E]": return self.match(success=lambda s: self.Success(func(s)), error=lambda e: e) async def...

Thanks for everybody use this extension. Now I'm focusing on `sanic-jwt-extended` project and not uses GraphQL now(no time to track graphene lib and GraphQL standards). so I can't maintain this...

as same as https://github.com/NovemberOscar/Sanic-JWT-Extended/issues/9

as same as https://github.com/NovemberOscar/Sanic-JWT-Extended/issues/8 ...

I am making an extension library [flask-graphql-auth](https://github.com/devArtoria/flask-graphql-auth). and error handler by using flask's app.errorhandler is being planed for the 1.0 release. I checked that if my library caused an exception...

- denylist?

enhancement
good first issue

1.0 version with few major changes. # New Build System - [x] adding poetry for dependencies management and packaging - [x] adding github action for PR, push, deploy # New...

enhancement

I write above code for using EnumField. but it raise `ModuleNotFoundError: No module named 'fields'` ```python from extras_mongoengine.fields import IntEnuField from mongoengine import * from enum import Enum class Type(Enum):...

I think this can be achieved by overriding test suit name (if it possible) like this: ![image](https://user-images.githubusercontent.com/20695897/75127595-43121b80-5703-11ea-9d55-7eb045c90054.png)