Skip to content

Commit caab767

Browse files
chore(internal): replace string concatenation with f-strings (#909)
1 parent 663a8f6 commit caab767

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/openai/lib/_validators.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def common_completion_prefix_validator(df: pd.DataFrame) -> Remediation:
309309
return Remediation(name="common_prefix")
310310

311311
def remove_common_prefix(x: Any, prefix: Any, ws_prefix: Any) -> Any:
312-
x["completion"] = x["completion"].str[len(prefix):]
312+
x["completion"] = x["completion"].str[len(prefix) :]
313313
if ws_prefix:
314314
# keep the single whitespace as prefix
315315
x["completion"] = f" {x['completion']}"
@@ -623,9 +623,7 @@ def get_outfnames(fname: str, split: bool) -> list[str]:
623623
i = 0
624624
while True:
625625
index_suffix = f" ({i})" if i > 0 else ""
626-
candidate_fnames = [
627-
f"{os.path.splitext(fname)[0]}_prepared{suffix}{index_suffix}.jsonl" for suffix in suffixes
628-
]
626+
candidate_fnames = [f"{os.path.splitext(fname)[0]}_prepared{suffix}{index_suffix}.jsonl" for suffix in suffixes]
629627
if not any(os.path.isfile(f) for f in candidate_fnames):
630628
return candidate_fnames
631629
i += 1

0 commit comments

Comments
 (0)