banksalad / K-Format

🇰🇷 Python library for Korean style fixed length format definition(전문 통신)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support keyword argument in kclass init

winterjung opened this issue · comments

@kclass
class Something:
    n: N(10)
    an: AN(20)

# 에러
sth = Something(n=123, an='k-class')

현재는 아래와 같은 형태로만 선언 가능.

Something(123, 'k-class')