We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef830f0 commit 4d9458aCopy full SHA for 4d9458a
scripts/autofix
@@ -0,0 +1,25 @@
1
+#!/usr/bin/env bash
2
+
3
4
+#
5
+# NAVIGATE TO CORRECT DIRECTORY
6
7
8
+# start by going to script dir so all movements
9
+# from here are relative
10
+SCRIPT_DIR=`dirname $(realpath "$0")`
11
+cd $SCRIPT_DIR
12
13
+# go to app dir
14
+cd ..
15
16
+# enable app virtual environment
17
+eval "$(direnv export bash)"
18
19
20
+# RUN AUTFIXER
21
22
23
+echo "Applying PEP 8 fixes..."
24
+autopep8 --in-place -r db_wrapper tests
25
+echo "Done."
0 commit comments