Don't crash if repr()/dump() are used before parse()

This commit is contained in:
Emmanuel BENOîT 2022-10-01 12:03:29 +02:00
parent 28f1d3308a
commit 3ff7ab51eb
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF

View file

@ -237,7 +237,7 @@ class RcInstruction(abc.ABC):
self._executed_once = None
self._loop = None
self._loop_var = None
self._vars = None
self._vars = {}
self._save = None
def __repr__(self):