https://github.com/bukosabino/ta
Raw File
Tip revision: 6ac0e0e83657aae4d5eda18dffb96202ec85cb1f authored by Dario Lopez Padial on 18 May 2019, 16:57:45 UTC
requirements update
Tip revision: 6ac0e0e
Makefile
init:
	pip install -r dev-requirements.txt

lint:
	# flake8 ta && isort --check-only --recursive ta
	pycodestyle --max-line-length=119 ta && isort --check-only --recursive ta

isort-fix:
	isort --recursive ta
back to top