Format current timestamp
(self)
| 50 | return f"{token[:6]}...{token[-6:]}" |
| 51 | |
| 52 | def _format_timestamp(self) -> str: |
| 53 | """Format current timestamp""" |
| 54 | return datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3] |
| 55 | |
| 56 | def _write_separator(self, char: str = "=", length: int = 100): |
| 57 | """Write separator line""" |
no outgoing calls
no test coverage detected