Skip to content

Commit a6a548a

Browse files
committed
print presets as well as other options
1 parent 9c8e2df commit a6a548a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dataprofiler/profilers/profiler_options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1843,10 +1843,10 @@ def __str__(self) -> str:
18431843
"""
18441844
Return a human friendly consumable output in string form.
18451845
1846-
:return: str of the option properties
1846+
:return: str of the option presets and properties
18471847
:rtype: str
18481848
"""
1849-
return str(self.structured_options) + "\n" + str(self.unstructured_options)
1849+
return f"Presets: {str(self.presets)}\n {str(self.structured_options)}\n {str(self.unstructured_options)}"
18501850

18511851
def _complete_presets(self) -> None:
18521852
self.set({"*.is_enabled": True})

0 commit comments

Comments
 (0)