if `doAssert` is used without condition, that is false value is hard-coded, change it to `raiseAssert "messge"` with appropriate message. Example: ``` doAssert false, "checked with hasKey" ``` should be: ``` raiseAssert "checked with hasKey" ```