We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c8e2df commit a6a548aCopy full SHA for a6a548a
1 file changed
dataprofiler/profilers/profiler_options.py
@@ -1843,10 +1843,10 @@ def __str__(self) -> str:
1843
"""
1844
Return a human friendly consumable output in string form.
1845
1846
- :return: str of the option properties
+ :return: str of the option presets and properties
1847
:rtype: str
1848
1849
- return str(self.structured_options) + "\n" + str(self.unstructured_options)
+ return f"Presets: {str(self.presets)}\n {str(self.structured_options)}\n {str(self.unstructured_options)}"
1850
1851
def _complete_presets(self) -> None:
1852
self.set({"*.is_enabled": True})
0 commit comments