Skip to content

Commit 0fdf4f0

Browse files
committed
Lint
1 parent ebef694 commit 0fdf4f0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

deep_ep/buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, group: Optional[dist.ProcessGroup],
3535
allow_nvlink_for_low_latency_mode: bool = True,
3636
allow_mnnvl: bool = False,
3737
explicitly_destroy: bool = False,
38-
comm: Optional["mpi4py.MPI.Comm"] = None) -> None:
38+
comm: Optional["mpi4py.MPI.Comm"] = None) -> None: # noqa: F821
3939
"""
4040
Initialize the communication buffer.
4141

deep_ep/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import os
2-
import subprocess
32
import torch
43
import torch.distributed as dist
54
from typing import Any, Optional, Tuple
65

76
# noinspection PyUnresolvedReferences
8-
from deep_ep_cpp import Config, EventHandle
7+
from deep_ep_cpp import EventHandle
98

109

1110
class EventOverlap:

0 commit comments

Comments
 (0)