File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ def common_completion_prefix_validator(df: pd.DataFrame) -> Remediation:
309
309
return Remediation (name = "common_prefix" )
310
310
311
311
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 ) :]
313
313
if ws_prefix :
314
314
# keep the single whitespace as prefix
315
315
x ["completion" ] = f" { x ['completion' ]} "
@@ -623,9 +623,7 @@ def get_outfnames(fname: str, split: bool) -> list[str]:
623
623
i = 0
624
624
while True :
625
625
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 ]
629
627
if not any (os .path .isfile (f ) for f in candidate_fnames ):
630
628
return candidate_fnames
631
629
i += 1
You can’t perform that action at this time.
0 commit comments