Update git submodules

* Update cliff from branch 'master'
  to 91c62985fb6c529cecfed5354ae687d62c25a821
  - Merge "columns: Useful __str__, __repr__ implementation"
  - columns: Useful __str__, __repr__ implementation
    
    The default implementations for __str__ and __repr__ are rubbish.
    
      >>> from osc_lib.cli import format_columns
      >>> str(format_columns.DictColumn({'foo': 'bar'}))
      '<osc_lib.cli.format_columns.DictColumn object at 0x7f6e26771e40>'
      >>> repr(format_columns.DictColumn({'foo': 'bar'}))
      '<osc_lib.cli.format_columns.DictColumn object at 0x7f6e26b57ac0>'
    
    Make it useful.
    
      >>> from osc_lib.cli import format_columns
      >>> str(format_columns.DictColumn({'foo': 'bar'}))
      "foo='bar'"
      >>> repr(format_columns.DictColumn({'foo': 'bar'}))
      "DictColumn({'foo': 'bar'})"
    
    This helps when testing as the reason for mismatches will be more
    obvious.
    
    Change-Id: I8b8598875f896cb3dbf417515d377e7758b3b98b
    Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
Zuul 2022-10-04 18:15:39 +00:00 committed by Gerrit Code Review
parent bd333fc946
commit 67f6aac93d
1 changed files with 1 additions and 1 deletions

2
cliff

@ -1 +1 @@
Subproject commit d1b46e9f97a990cc8456ecfc7efc5263a41f24ba
Subproject commit 91c62985fb6c529cecfed5354ae687d62c25a821