Skip to content

Commit

Permalink
feat: propagating suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLiegiBastonLiegi committed Jan 9, 2025
1 parent d71975c commit e9f8c7f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/qibo_cloud_backends/qibo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ def __init__(
"No token provided. Please explicitely pass the token `token='your_token'` or set the environment variable `QIBO_CLIENT_TOKEN='your_token'`.",
)
self.project = project if project is not None else "personal"
if platform is None:
platform = "k2"
self.platform = platform
self.platform = platform if platform is not None else "k2"
self.name = "qibo-client"
self.verbosity = verbosity
self.client = qibo_client.Client(token)
Expand Down

0 comments on commit e9f8c7f

Please sign in to comment.