Skip to content

Commit

Permalink
f-string removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Erykiusz committed Aug 27, 2024
1 parent c4afb8a commit 0a33feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/proteins/interactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4369,7 +4369,7 @@ def checkAndImport(package_name):

import importlib.util
if importlib.util.find_spec(package_name) is None:
LOGGER.warn(f"Package '{package_name}' is not installed. Please install it to use this function.")
LOGGER.warn("Package " + str(package_name) + " is not installed. Please install it to use this function.")
return False
return True

Expand Down

0 comments on commit 0a33feb

Please sign in to comment.