in otava/data_selector.py [0:0]
def get_selection_description(self):
attributes = "\n".join(
[f"{a}: {v}" for a, v in self.__dict__.items() if not a.startswith("__") and v]
)
return f"Data Selection\n{attributes}"