From 1bf0d224b774553bea68c28678df458d1e6a1db7 Mon Sep 17 00:00:00 2001 From: Shrividya Hegde Date: Fri, 19 Dec 2025 07:45:26 -0800 Subject: [PATCH 1/2] Fix workflow step name for black formatting Updated the workflow to correctly reference 'Run black' and removed the installation step for black. --- .github/workflows/python-app.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yaml b/.github/workflows/python-app.yaml index 6193574..9892bb6 100644 --- a/.github/workflows/python-app.yaml +++ b/.github/workflows/python-app.yaml @@ -23,9 +23,8 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - - name: Run with black + - name: Run black run: - pip install black black . --line-length=78 - name: Lint with flake8 run: | @@ -33,4 +32,4 @@ jobs: flake8 src/ --max-line-length=120 - name: Run Streamlit App Check run: | - streamlit hello \ No newline at end of file + streamlit hello From 4258a65fc1bd03f4c93f8bf7a2cea277351db07a Mon Sep 17 00:00:00 2001 From: Shrividya Hegde Date: Fri, 19 Dec 2025 07:45:54 -0800 Subject: [PATCH 2/2] Add streamlit and black to requirements --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6cadabb..a753719 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,5 @@ pandas matplotlib requests textblob -streamlit \ No newline at end of file +streamlit +black