Skip to content

Commit 12665e8

Browse files
committed
Fixing linter issues.
1 parent 0d3873a commit 12665e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ols/src/quota/revokable_quota_limiter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,10 @@ def _reconcile_quota_limits(self) -> None:
204204
cursor.execute(
205205
RevokableQuotaLimiter.RECONCILE_QUOTA_LIMITS,
206206
(
207-
self.initial_quota, # new quota_limit
207+
self.initial_quota, # new quota_limit
208208
self.initial_quota, # used in calculation: available + (new - old)
209-
self.subject_type,
210-
self.initial_quota,
209+
self.subject_type,
210+
self.initial_quota,
211211
),
212212
)
213213
updated_rows = cursor.fetchall()

0 commit comments

Comments
 (0)