#!/bin/bash

# Install the required scripts with
# pip install autoflake autopep8 isort
autoflake ./graphql/ ./tests/ -r --remove-unused-variables --in-place
autopep8 ./tests/ ./graphql/ -r --in-place --experimental --aggressive --max-line-length 120
isort -rc ./tests/ ./graphql/
