Skip to content

🐝 Change model Autocomplete to Choices #22

🐝 Change model Autocomplete to Choices

🐝 Change model Autocomplete to Choices #22

Workflow file for this run

name: Format Code
on:
push:
branches:
- main # Change this to your main branch name
jobs:
format_code:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Format Python Files
run: black .