(text)
| 73 | |
| 74 | @staticmethod |
| 75 | def try_convert_b64(text)->tuple[bytes,str]: |
| 76 | b64bytes = b64decode(text) |
| 77 | data_format = Util.get_data_type(text) |
| 78 | return b64bytes,data_format |
| 79 | |
| 80 | @staticmethod |
| 81 | def get_data_type(content:bytes)->str: |
nothing calls this directly
no test coverage detected