Replacing the func_dump dictionary by dataclasses
I can't stand all this dictionary access stuff in core
, so I'd like to propose a solution using dataclasses. This would break Python3.6 support though. Thoughts @palmb ?
Merge request reports
Activity
Filter activity
added 1 commit
- c5ce207a - Remove Python3.6 test runner from .gitlab-ci.yml
added cleanup/refactoring label
because of loosing python36 we just can remove the
@dataclass
and write an init that set the attributes.. but i dont care..class Foo: a = None b = None def __init__(self, a=0, b=0) self.a = a self.b = b
Edited by Bert Palmmentioned in commit 98bddd51
Please register or sign in to reply