Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Merge branch 'main' into dallas/instrument-prs-from-nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjoeoui authored Oct 24, 2023
2 parents d7103c6 + 5b5192a commit b0b7e1c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/block-quality-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jobs:
- name: Check if there is any missing Block component
run: poetry run python3 fjblock.py sync

- name: Check if everything is in sync
run: |
if git diff --quiet; then
echo "No changes found, we are good to go!"
else
echo "Error: Changes detected. Please make sure to run the sync command and commit the changes"
exit 1
fi
block-code-style-check:
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 2 additions & 1 deletion blocks/AI_ML/CLASSIFICATION/ACCURACY/ACCURACY.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from flojoy import flojoy, DataFrame
from typing import Optional

from flojoy import DataFrame, flojoy


@flojoy
def ACCURACY(
Expand Down

0 comments on commit b0b7e1c

Please sign in to comment.