Returns the source code of the state variable.
Last updated 2 months ago
source_code() β str
from glider import * def query(): state_variables = ( StateVariables() .exec(5) ) for state_var in state_variables: print(state_var.source_code()) return state_variables