Skip to content

Commit

Permalink
Fix sentry service instantiation issue in ExportService constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-uiuc committed Mar 7, 2024
1 parent ad220a6 commit 484b2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai_ta_backend/service/export_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class ExportService:

@inject
def __init__(self, sql: SQLDatabase, s3: AWSStorage, sentry=SentryService):
def __init__(self, sql: SQLDatabase, s3: AWSStorage, sentry: SentryService):
self.sql = sql
self.s3 = s3
self.sentry = sentry
Expand Down

0 comments on commit 484b2a2

Please sign in to comment.