Skip to content

Commit 6d6f160

Browse files
fix: fix lint problems
1 parent 285689b commit 6d6f160

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

graphgen/models/generator/vqa_generator.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@ class VQAGenerator(BaseGenerator):
1010
def build_prompt(
1111
batch: tuple[list[tuple[str, dict]], list[tuple[Any, Any, dict]]]
1212
) -> str:
13-
raise NotImplementedError("VQAGenerator.build_prompt is not implemented. Please provide an implementation for VQA prompt construction.")
13+
raise NotImplementedError(
14+
"VQAGenerator.build_prompt is not implemented. "
15+
"Please provide an implementation for VQA prompt construction."
16+
)
1417

1518
@staticmethod
1619
def parse_response(response: str) -> Any:
17-
raise NotImplementedError("VQAGenerator.parse_response is not implemented. Please provide an implementation for VQA response parsing.")
20+
raise NotImplementedError(
21+
"VQAGenerator.parse_response is not implemented. "
22+
"Please provide an implementation for VQA response parsing."
23+
)

0 commit comments

Comments
 (0)