amakelov/mandala

Arg names for ops are case insensitive

amakelov opened this issue · 1 comments

Running the following results in an error:

from mandala.all import *
storage = Storage()
@op
def f(x, X) -> int:
    return x + X
with storage.run():
    f(1, 2)

> 
> OperationalError: duplicate column name: X

Resolved by incoming 0.2.0beta