Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

Remove sqlitedict from requirements and import guard #906

Remove sqlitedict from requirements and import guard

Remove sqlitedict from requirements and import guard #906

Workflow file for this run

name: code_style
on:
pull_request:
branches:
- 'main'
jobs:
black:
runs-on: ubuntu-latest
env:
working-directory: .
steps:
- name: checkout the repo
uses: actions/checkout@v3
- name: install dependencies
run: pip install --upgrade black==19.10b0 click==8.0.2
- name: code style check
run: black . --check --verbose --diff
working-directory: ${{env.working-directory}}