Skip to content

Add USE_NEW_LRTS_IDS module variable, getter, and setter to api. #1174

Add USE_NEW_LRTS_IDS module variable, getter, and setter to api.

Add USE_NEW_LRTS_IDS module variable, getter, and setter to api. #1174

Workflow file for this run

name: Code Check
# Run the workflow on all branches.
on: [push, pull_request]
jobs:
# Run basic code quality checks.
check-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
# Verify that python files are formatted using black and isort. Both of the actions
# below simply check the source code and fail if they find any files that need to be
# formatted. The code is not automatically reformatted like it is when running the
# pre-commit hooks.
- uses: psf/black@stable
with:
# Specify the desired Black version
version: "24.10.0"
- uses: isort/isort-action@v1