-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for submit option to HTCondor site adapter #354
Add support for submit option to HTCondor site adapter #354
Conversation
@@ -44,7 +45,9 @@ async def condor_q( | |||
_job_id(resource.remote_resource_uuid) for resource in resource_attributes | |||
) | |||
|
|||
queue_command = f"condor_q {remote_resource_ids} -af:t {attributes_string}" | |||
queue_command = ( | |||
f"condor_q {remote_resource_ids} -af:t {attributes_string}" # noqa E231 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not related to the feature. Flake 8 complained about the missing space after the colon like in -af: t
. 🙈
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, for adding the documentation. Looks good 👍
Resolves #353