diff --git a/src/aiida/orm/nodes/data/code/installed.py b/src/aiida/orm/nodes/data/code/installed.py index 701588ecf9..2a23375c9c 100644 --- a/src/aiida/orm/nodes/data/code/installed.py +++ b/src/aiida/orm/nodes/data/code/installed.py @@ -155,10 +155,7 @@ def validate_filepath_executable(self): ) if not user_has_execute: - execute_msg = ( - f'File `{self.filepath_executable}` exists, ' - 'but might not actually be executable.' - ) + execute_msg = f'File `{self.filepath_executable}` exists, ' 'but might not actually be executable.' raise exceptions.ValidationError(execute_msg) def can_run_on_computer(self, computer: Computer) -> bool: