Skip to content

Commit

Permalink
fix lint2
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelrios committed Jul 10, 2024
1 parent ceed11b commit 3489566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion database.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class ReportGithubIssues(Base):
__table__ = Table('report_github_issues', Base.metadata, autoload=True)



class ReportJiraQARequests(Base):
__table__ = Table('report_jira_qa_requests', Base.metadata, autoload=True) # noqa

Expand Down
4 changes: 2 additions & 2 deletions jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,5 @@ def report_jira_qa_requests_insert(self, payload):
# This is the only way working locally to insert data
# payload.to_sql('report_jira_qa_requests', con=engine, if_exists='append', index=False) # noqa

# session.add(report)
# session.commit()
session.add(report)
session.commit()

0 comments on commit 3489566

Please sign in to comment.