diff --git a/jobs/hello.md b/jobs/hello.md index 6ccd2e1..e9962e1 100644 --- a/jobs/hello.md +++ b/jobs/hello.md @@ -32,7 +32,6 @@ job["schedulerOptions"] = [{"arg": f"--account {some_project}"}] ``` We can now submit the job with: ```python - job = t.jobs.submitJob(**job) ``` If successful, the `job` object should look something like. diff --git a/systems/credentials.md b/systems/credentials.md index acc8b3d..743d842 100644 --- a/systems/credentials.md +++ b/systems/credentials.md @@ -20,7 +20,7 @@ awk -v ORS='\\n' '1' private_key_name ``` It is important to note that these are case sensitive, and as such need to be handled with care. Copy and pasting between systems and languages can be tricky, it is a common error for the following step for the private key to not be able to validate due to hidden copying issues. -When copying down the private key for the following step, make sure to copy all of the lines, including the `-----BEGIN RSA PRIVATE KEY-----\n` & `\n-----END RSA PRIVATE KEY-----\n` and any newline characters.Without this, errors will occur. +When copying down the private key for the following step, make sure to copy all of the lines, including the `-----BEGIN RSA PRIVATE KEY-----\n` & `\n-----END RSA PRIVATE KEY-----\n` and any newline characters. Without this, errors will occur. ## Registering SSH Keys Copy and paste the following code into your notebook.