You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add @staticmethod decorator to _format_bytes and update all call sites
to use class-based invocation. This method does not use instance state
and was already being called statically in cmd_list, making this change
more consistent with actual usage.
Changes:
- Add @staticmethod decorator
- Remove self parameter from method signature
- Update all calls from self._format_bytes() or backup._format_bytes()
to OpenSearchBackup._format_bytes()
Addresses review feedback on PR #23.
0 commit comments