Skip to content

Commit 53f1eaf

Browse files
committed
TODO _display_classes_as_table()
Details: * In _display_classes_as_table(), replaced the TODO that was in the docstring and thus not reported by Pylint, with a TODO as a comment that references the existing issue #249 for this TODO. Signed-off-by: Andreas Maier <[email protected]>
1 parent 908565a commit 53f1eaf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pywbemtools/pywbemcli/_display_cimobjects.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -266,13 +266,11 @@ def display_cim_objects_summary(context, objects, output_format):
266266

267267
def _display_classes_as_table(classes, table_width, table_format):
268268
"""
269-
TODO: Future extend to display classes as a table, showing the
270-
properties for each class. This will display the properties that exist in
271-
subclasses. The temp output
272-
so we could create the function is to just output as mof
269+
Display classes as a table.
273270
"""
274271
# pylint: disable=unused-argument
275272

273+
# TODO(#249): Display classes as a table, and no longer just as MOF.
276274
for class_ in classes:
277275
click.echo(class_.tomof())
278276

0 commit comments

Comments
 (0)