Skip to content

Commit f415794

Browse files
authored
minor print issues with app wrapper (#20)
Co-authored-by: Atin Sood <[email protected]>
1 parent 795c63c commit f415794

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/codeflare_sdk/cluster/cluster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def list_all_clusters(print_to_console=True):
104104
def list_all_queued(print_to_console=True):
105105
app_wrappers = _get_app_wrappers(filter=[AppWrapperStatus.RUNNING, AppWrapperStatus.PENDING])
106106
if print_to_console:
107-
pretty_print.print_appwrappers_status(app_wrappers)
107+
pretty_print.print_app_wrappers_status(app_wrappers)
108108
return app_wrappers
109109

110110

src/codeflare_sdk/utils/pretty_print.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def print_no_resources_found():
1212
console.print(Panel("[red]No resources found"))
1313

1414

15-
def print_appwrappsers_status(app_wrappers:List[AppWrapper]):
15+
def print_app_wrappers_status(app_wrappers:List[AppWrapper]):
1616
if not app_wrappers:
1717
print_no_resources_found()
1818
return #shortcircuit

0 commit comments

Comments
 (0)