Skip to content

Nit 1204 ldap data refresh remove passwords #3

Nit 1204 ldap data refresh remove passwords

Nit 1204 ldap data refresh remove passwords #3

Workflow file for this run

name: Format code
on:
pull_request:
paths:
- '**.py'
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format code with black
run: |
pip install black
black --line-length 120 .
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: "Formatted code with black --line-length 120"
add: "."