mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 11:33:25 +00:00
feat: Enhance renamer app with help screen, rename confirmation, and special info formatting
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class SpecialInfoFormatter:
|
||||
"""Formatter for special info lists"""
|
||||
|
||||
@staticmethod
|
||||
def format_special_info(special_info):
|
||||
"""Convert special info list to comma-separated string"""
|
||||
if isinstance(special_info, list):
|
||||
return ", ".join(special_info)
|
||||
return special_info or ""
|
||||
Reference in New Issue
Block a user