Skip to content

Instantly share code, notes, and snippets.

View shr0048's full-sized avatar
👨‍💻
On developing

Harold shr0048

👨‍💻
On developing
View GitHub Profile
@shr0048
shr0048 / bad_ex.py
Last active February 10, 2023 02:57
error_handling_ex
import time
import logger
class DataTransport:
retry_threshold: int = 5
retry_n_times: int = 5
def __init__(self, connector):
self._connector = connector
self.connection = None