Skip to content

Commit 856159e

Browse files
committed
lint
Signed-off-by: Jennifer Chen <[email protected]>
1 parent 5d46a7b commit 856159e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/nemo_run/qat/nemo_qat_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def get_args():
138138
"--enable_kv_cache",
139139
help="Enables KV-cache quantization",
140140
action="store_true",
141-
default=False
141+
default=False,
142142
)
143143
return parser.parse_args()
144144

modelopt/torch/export/plugins/nemo_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def _get_most_recent_ckpt(directory: str):
5757
str: Path to the most recent subdirectory.
5858
"""
5959
exp_dir = Path(directory) / "default"
60-
if not exp_dir.exists():
60+
if not exp_dir.exists():
6161
raise FileNotFoundError(f"Experiment directory {exp_dir} does not exist")
6262

6363
checkpoint_dir = exp_dir / "checkpoints"

0 commit comments

Comments
 (0)