Skip to content

Stream: remove __repr__ #112

Stream: remove __repr__

Stream: remove __repr__ #112

Workflow file for this run

name: lint
on:
push:
paths:
- 'streamable/**'
- 'tests/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: checks
run: |
python -m pip install -r .github/workflows/requirements.txt
python -m autoflake --in-place --remove-all-unused-imports --remove-unused-variables --ignore-init-module --check -r streamable tests
python -m black --check .