Returns true if the visibility of the state variable is private, otherwise returns false.
Last updated 1 month ago
is_private() β bool
from glider import * def query(): state_variables = ( StateVariables() .exec(20) .filter(lambda state_variable: state_variable.is_private()) ) print(state_variables[0].source_code()) return state_variables