Skip to content

Commit

Permalink
chore: change defaults for job info endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Jan 23, 2025
1 parent f504526 commit ff50d5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kiara/interfaces/python_api/kiara_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def get_info(node):

return augmented_nodes

def print_all_jobs_info_data(self, aliases: bool = True, max_char: int = 0, show_inputs: bool=False, show_outputs: bool=False) -> None:
def print_all_jobs_info_data(self, aliases: bool = True, max_char: int = 0, show_inputs: bool=True, show_outputs: bool=True) -> None:
"""Prints a table with all jobs info data.
If max_char > 0, the value previews will be truncated to max_char characters, unless aliases is True, in which case the aliases of a value will be shown (if available).
Expand Down Expand Up @@ -369,7 +369,7 @@ def print_all_jobs_info_data(self, aliases: bool = True, max_char: int = 0, show

terminal_print(table)

def get_all_jobs_info_data(self, aliases: bool = True, max_char: int = 0, add_inputs_preview: bool=False, add_outputs_preview: bool=False) -> List[Dict[str, Any]]:
def get_all_jobs_info_data(self, aliases: bool = True, max_char: int = 0, add_inputs_preview: bool=True, add_outputs_preview: bool=True) -> List[Dict[str, Any]]:
"""Retrieve all job info as a list of dicts.
If max_char > 0, the value previews will be truncated to max_char characters, unless aliases is True, in which case the aliases of a value will be shown (if available).
Expand Down

0 comments on commit ff50d5b

Please sign in to comment.