From 3edf4caa3b4deb3440192e48f8dbe371731ce434 Mon Sep 17 00:00:00 2001 From: Barak Merdler Date: Tue, 26 Nov 2019 10:35:36 +0200 Subject: [PATCH] adding app.py to solved the challenge Cheange after review from Aviad, used with.. open, variable names cheanged, pass flake8 lint rules broke the last print into 2 prints commands added yml for testing flake8 on travis CI comiited the wrong file before Delete app.py only want on this PR .travis.yml --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..02e5e5d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - "3.6" + - "3.7" + - "3.8" + +install: + - pip install flake8 + +script: + - flake8 .