diff --git a/blankly/frameworks/strategy/strategy_state.py b/blankly/frameworks/strategy/strategy_state.py index cbfd0fc7..44f2fdea 100644 --- a/blankly/frameworks/strategy/strategy_state.py +++ b/blankly/frameworks/strategy/strategy_state.py @@ -76,3 +76,10 @@ def __str__(self): output = format_with_new_line(output, pretty_print_json(self.variables, actually_print=False)) return output + + @property + def vars(self): + """ + An alias to the variables attribute + """ + return self.variables \ No newline at end of file