From ac1527dee4f648f800338c6fe039ed36936d410f Mon Sep 17 00:00:00 2001
From: Bo-Chun Louis Chen <louistw@uab.edu>
Date: Mon, 18 May 2020 14:08:16 -0500
Subject: [PATCH] Remove flake8

---
 .gitlab-ci.yml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4b1cc07..d93cd99 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,6 @@ image: "python:3.7"
 
 before_script:
   - python --version
-  - pip install flake8
   - pip install pylint
 
 stages:
@@ -13,5 +12,4 @@ linting:
     - lint
   stage: lint
   script:
-    - flake8 --exclude=tests.py --max-line-length=120 *.py app
     - pylint --ignore=tests.py --max-line-length=120 *.py app
-- 
GitLab