From e4af94e7aa0ecb56ee5f4930e641a341def814b8 Mon Sep 17 00:00:00 2001 From: kiarash kiani Date: Wed, 11 Sep 2024 11:18:20 +0200 Subject: [PATCH] chore(spark): fix typo in the docs --- src/damavand/base/controllers/spark.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/damavand/base/controllers/spark.py b/src/damavand/base/controllers/spark.py index 8a95678..69e28ee 100644 --- a/src/damavand/base/controllers/spark.py +++ b/src/damavand/base/controllers/spark.py @@ -44,7 +44,7 @@ class SparkController(ApplicationController): Return the currently active Spark session. application_with_id(app_id) Return the Spark application with the given ID. - run_applications(id_) + run_application(app_id) Run the Spark application with the given ID. """ @@ -154,7 +154,7 @@ def run_application(self, app_id: str) -> None: """Run the Spark application with the given ID. Args: - id_ (str): The application ID. + app_id (str): The application ID. """ app = self.application_with_id(app_id)