Skip to content

Commit

Permalink
picked lint
Browse files Browse the repository at this point in the history
  • Loading branch information
telamonian committed Jul 26, 2024
1 parent d742327 commit b380f25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ disable=
W0212, # protected-access
C0301, # line-too-long
C0103, # invalid-name
W1510, # subprocess-run-check

# TODO
W3101, # missing timeout on request
Expand Down
2 changes: 1 addition & 1 deletion comfy_cli/uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def resolveGpu(gpu: Union[str, None]):
def __init__(
self,
cwd: PathLike = ".",
extDirs: list[PathLike] = [],
extDirs: Optional[list[PathLike]] = None,
gpu: Union[str, None] = None,
outName: str = "requirements.compiled",
):
Expand Down

0 comments on commit b380f25

Please sign in to comment.