I noticed that the code just accepts typos like crc.get('To') and other invalid fields. Since this would lead to an error in the users code sooner or later, I'd rather raise an exception immediately instead of returning None (which is presumably harder to debug).
Hi again,
I noticed that the code just accepts typos like
crc.get('To')
and other invalid fields. Since this would lead to an error in the users code sooner or later, I'd rather raise an exception immediately instead of returningNone
(which is presumably harder to debug).Cheers, Stefan