Closed JulienRemy closed 4 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 99.86%. Comparing base (
647447e
) to head (9c966a9
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
@arporter @sergisiso What do you think about these?
@arporter I edited w.r.t. all the points above, except for unindenting as I get Flake8 complaints if I do.
I also formatted the docstrings of the neighboring methods (no \
, indentation) and added my name in the Modified
or Authors
sections, which I always forget to do.
assert
s are now unindented and I also changed the _validate_...
error strings to use type(object).__name__
.
Arguments currently have to be inserted in
SymbolTable().argument_list
using a workaround:This introduces
SymbolTable().insert_argument(index, argument)
and.append_argument(argument)
to hopefully cover most use cases.