Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
deathsec
GitHub Repository: deathsec/instagram-py
Path: blob/master/indent.sh
197 views
1
# The MIT License.
2
# Copyright (C) 2017 The Future Shell , DeathSec.
3
#
4
# Indents Python source files to PEP8 Coding Style.
5
# Depends on autopep8
6
7
autopep8 -i bin/instagram-py \
8
InstagramPy/*py
9
10
echo "Converted Source files to PEP8 Style!"
11
echo "exiting... "
12
13
14