Skip to content

Commit 8d44804

Browse files
authored
Merge pull request #975 from brianteeman/identify_image_in_comment
identify_image_in_comment
2 parents a4320b6 + 195f8a0 commit 8d44804

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pr_agent/tools/pr_questions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async def run(self):
5959
self.git_provider.publish_comment("Preparing answer...", is_temporary=True)
6060

6161
# identify image
62-
img_path = self.idenfity_image_in_comment()
62+
img_path = self.identify_image_in_comment()
6363
if img_path:
6464
get_logger().debug(f"Image path identified", artifact=img_path)
6565

@@ -78,7 +78,7 @@ async def run(self):
7878
self.git_provider.remove_initial_comment()
7979
return ""
8080

81-
def idenfity_image_in_comment(self):
81+
def identify_image_in_comment(self):
8282
img_path = ''
8383
if '![image]' in self.question_str:
8484
# assuming structure:

0 commit comments

Comments
 (0)