Denis Chermyaninov

Results 7 comments of Denis Chermyaninov

Please merge this((

> > And bulk updating of course is important to support. Looping and updating one by one is too slow. > > According to the documentation, it will be supported...

My solution is ```python async def _alive_task(websocket: WebSocket): try: await websocket.receive_text() except (WebSocketDisconnect, ConnectionClosedError): pass async def _send_data(websocket: WebSocket): try: while True: data = await wait_data() await websocket.send_json(data) except (WebSocketDisconnect,...

Hello! My solution is ```python3 def _find_last_commit(repo: Repository, file_path: str, oid: str): walker = repo.walk(oid, GIT_SORT_TIME) first_commit = next(walker) while True: second_commit = next(walker) first_file = first_commit.tree[file_path] if file_path not...