Skip to content

Remove need for num_features before fitting #900

Remove need for num_features before fitting

Remove need for num_features before fitting #900

Workflow file for this run

name: Formatting check
on:
- pull_request
jobs:
black:
runs-on: ubuntu-latest
steps:
- name: Cancel Workflow Action
uses: styfle/cancel-workflow-action@0.11.0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install black[jupyter]
- uses: actions/checkout@v4
- name: Run Black
run: |
black -l 99 src --check
black -l 99 tests --check
black -l 99 --ipynb examples --check