Skip to content

Commit

Permalink
fix: pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLiegiBastonLiegi committed Feb 9, 2024
1 parent 363787f commit a926f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibo/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __new__(cls):
if backend: # pragma: no cover
# Create backend specified by user
platform = os.environ.get("QIBO_PLATFORM")
cls._instance = construct_backend(backend, platform)
cls._instance = construct_backend(backend, platform=platform)
else:
# Create backend according to default order
for kwargs in cls._default_order:
Expand Down

0 comments on commit a926f78

Please sign in to comment.