Skip to content

Commit

Permalink
Address lint items
Browse files Browse the repository at this point in the history
  • Loading branch information
pdemro committed Sep 6, 2024
1 parent 441847b commit bc6c924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_env_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import pytest

from sweagent.agent.issueService.issue_service import IssueService
from sweagent.agent.issueService.issue_service_factory import IssueServiceFactory
from sweagent.environment.utils import (
InvalidGithubURL,
format_trajectory_markdown,
Expand Down Expand Up @@ -89,8 +90,7 @@ def test_get_associated_commit_urls():

def build_issue_service(data_path: str) -> IssueService:
issue_service_factory = IssueServiceFactory()
issue_service = issue_service_factory.create_issue_factory(data_path)
return issue_service
return issue_service_factory.create_issue_factory(data_path)


def test_get_instance_gh_issue():
Expand Down

0 comments on commit bc6c924

Please sign in to comment.