Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 07c2cc6

Browse files
ptelangjhrozek
authored andcommitted
Fix linting issue
1 parent cbf36ea commit 07c2cc6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/codegate/providers/base.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,12 @@ async def _run_output_stream_pipeline(
8282
logger.info("No output pipeline processor found, passing through")
8383
return model_stream
8484

85-
# HACK! for anthropic we always need to run the output FIM pipeline even if empty to run the normalizers
86-
if len(out_pipeline_processor.pipeline_steps) == 0 and self.provider_route_name != "anthropic":
85+
# HACK! for anthropic we always need to run the output FIM pipeline even
86+
# if empty to run the normalizers
87+
if (
88+
len(out_pipeline_processor.pipeline_steps) == 0
89+
and self.provider_route_name != "anthropic"
90+
):
8791
logger.info("No output pipeline steps configured, passing through")
8892
return model_stream
8993

0 commit comments

Comments
 (0)