Skip to content

Commit

Permalink
fix pylama issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kchilleri committed Oct 1, 2024
1 parent 2e63d34 commit 4fb76ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beeflow/common/db/client_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, db_file):

def set_hostname(self, new_hostname):
"""Set hostname for current front end."""
stmt = f"UPDATE info set hostname=?"
stmt = "UPDATE info set hostname=?"
bdb.run(self.db_file, stmt, [new_hostname])

def get_hostname(self):
Expand Down

0 comments on commit 4fb76ab

Please sign in to comment.