Skip to content

Commit 1a34c98

Browse files
committed
fix codestyle
1 parent 6c61d60 commit 1a34c98

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ repos:
99
rev: v0.14.4
1010
hooks:
1111
- id: ruff-check
12-
args: [--fix, --exit-non-zero-on-fix, --no-cache]
13-
- id: ruff-format
12+
args: [--fix, --exit-non-zero-on-fix, --no-cache]

graph_net/status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def main():
2828
prog="python -m graph_net.status",
2929
description="List contents of the $GRAPH_NET_EXTRACT_WORKSPACE directory (like ls)",
3030
)
31-
args = parser.parse_args()
31+
args = parser.parse_args() # noqa: F841
3232

3333
ws = os.environ.get("GRAPH_NET_EXTRACT_WORKSPACE")
3434
if not ws:

0 commit comments

Comments
 (0)