Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
aisbf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexlab
aisbf
Commits
c4c3aa38
Commit
c4c3aa38
authored
Apr 21, 2026
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix remaining indentation error
parent
c49e28b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
claude.py
aisbf/providers/claude.py
+3
-3
No files found.
aisbf/providers/claude.py
View file @
c4c3aa38
...
@@ -138,9 +138,9 @@ class ClaudeProviderHandler(BaseProviderHandler):
...
@@ -138,9 +138,9 @@ class ClaudeProviderHandler(BaseProviderHandler):
if
auth
.
tokens
and
'expires_at'
not
in
auth
.
tokens
and
'expires_in'
in
auth
.
tokens
:
if
auth
.
tokens
and
'expires_at'
not
in
auth
.
tokens
and
'expires_in'
in
auth
.
tokens
:
import
time
import
time
auth
.
tokens
[
'expires_at'
]
=
time
.
time
()
+
auth
.
tokens
.
get
(
'expires_in'
,
3600
)
auth
.
tokens
[
'expires_at'
]
=
time
.
time
()
+
auth
.
tokens
.
get
(
'expires_in'
,
3600
)
import
logging
import
logging
logging
.
getLogger
(
__name__
)
.
info
(
f
"ClaudeProviderHandler: Loaded credentials from database for user {self.user_id}"
)
logging
.
getLogger
(
__name__
)
.
info
(
f
"ClaudeProviderHandler: Loaded credentials from database for user {self.user_id}"
)
return
auth
return
auth
except
Exception
as
e
:
except
Exception
as
e
:
logging
.
getLogger
(
__name__
)
.
warning
(
f
"ClaudeProviderHandler: Failed to load credentials from database: {e}"
)
logging
.
getLogger
(
__name__
)
.
warning
(
f
"ClaudeProviderHandler: Failed to load credentials from database: {e}"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment