repo: run codespell
Run codespell and replace known misspelling.
Signed-off-by: Nicola Mazzucato <nicola.mazzucato@arm.com>
Change-Id: I6bfcf67b27745c98059a433c929af637f9a02d8e
diff --git a/tfm_ci_pylib/lava_rpc_connector.py b/tfm_ci_pylib/lava_rpc_connector.py
index e6c391e..283fd25 100644
--- a/tfm_ci_pylib/lava_rpc_connector.py
+++ b/tfm_ci_pylib/lava_rpc_connector.py
@@ -69,7 +69,7 @@
super(LAVA_RPC_connector, self).__init__(server_addr)
def _rpc_cmd_raw(self, cmd, params=None):
- """ Run a remote comand and return the result. There is no constrain
+ """ Run a remote command and return the result. There is no constrain
check on the syntax of the command. """
cmd = "self.%s(%s)" % (cmd, params if params else "")
@@ -196,7 +196,7 @@
return self.scheduler.job_state(job_id)["job_state"]
def cancel_job(self, job_id):
- """ Cancell job with id=job_id. Returns True if successfull """
+ """ Cancel job with id=job_id. Returns True if successful """
return self.scheduler.jobs.cancel(job_id)