Matthias Als

Results 23 comments of Matthias Als

Closed for being stale. Please reopen if the issue persists

Related to https://github.com/lidatong/dataclasses-json/issues/174

I tried to repreduce this with the following code in the newest master version, but it ran just fine: ```python class MyEnum(enum.Enum): STR = "str" FLOAT = 1.0 @dataclass_json @dataclass...

Hi there. Could you do something like this? ```python @dataclass class EncodeExclude(DataClassJsonMixin): some_field: str ignored_field: str = field(metadata=config(exclude=Exclude.ALWAYS)) ```

Hi @NiroHaim, this repo has been without much activity for a long time, so issues have been piling up. A few new maintainers have been added (including myself), so we...

When I am looking at the documentation for `InitVar`, it looks like it is supposed to be passed to the constructor, but it should not be accessible from the outside...

@USSX-Hares Looks like the `gh-pages` branch contains website stuff which I guess is the documentation? The indentation and spacing looks a bit funky.

Probably also related to #84 and #264

I would love to use highspy in favor of the open source solver we use now, but `solution.col_value[icol]` is way too slow for me. I found that the access time...