Skip to content

Commit cb64dd5

Browse files
authored
Fix failing lint (model arg not used) (#1883)
Fixes a regression introduced in #1876 (dunno why it wasn't spotted) CI should be green now.
1 parent 08b657b commit cb64dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tasks/src/model-libraries-snippets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,7 @@ from models.birefnet import BiRefNet
19821982
model = BiRefNet.from_pretrained("${model.id}")`,
19831983
];
19841984

1985-
export const supertonic = (model: ModelData): string[] => [
1985+
export const supertonic = (): string[] => [
19861986
`from supertonic import TTS
19871987
19881988
tts = TTS(auto_download=True)

0 commit comments

Comments
 (0)