Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve flake8 failures and/or add flake8-ignore #40

Closed
jessicaaustin opened this issue Feb 28, 2020 · 1 comment
Closed

Resolve flake8 failures and/or add flake8-ignore #40

jessicaaustin opened this issue Feb 28, 2020 · 1 comment

Comments

@jessicaaustin
Copy link

The CONTRIBUTING docs recommend running flake8. However when I tried this, there were a lot of flake8 failures. I recommend resolving those and/or adding a list of ignored tests to flake8-ignore. Otherwise, as a contributor I'd just ignore the output of these tests.

@jessicaaustin jessicaaustin changed the title Tests: flake8 failures Resolve flake8 failures and/or add flake8-ignore Feb 28, 2020
@jessicaaustin
Copy link
Author

Output when I ran this:

(cotede37) jaustin@merlin:~/dev/castelao/CoTeDe$ pytest cotede --flake8 -m flake8
======================================================================================== test session starts =========================================================================================
platform linux -- Python 3.7.6, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
rootdir: /home/jaustin/dev/castelao/CoTeDe
plugins: xdist-1.31.0, flake8-1.0.4, forked-1.1.3
collected 40 items                                                                                                                                                                                   

cotede/__init__.py F                                                                                                                                                                           [  2%]
cotede/misc.py F                                                                                                                                                                               [  5%]
cotede/qc.py F                                                                                                                                                                                 [  7%]
cotede/anomaly_detection/__init__.py F                                                                                                                                                         [ 10%]
cotede/anomaly_detection/anomaly_detection.py F                                                                                                                                                [ 12%]
cotede/fuzzy/__init__.py F                                                                                                                                                                     [ 15%]
cotede/fuzzy/defuzz.py F                                                                                                                                                                       [ 17%]
cotede/fuzzy/fuzzy_core.py F                                                                                                                                                                   [ 20%]
cotede/fuzzy/membership_functions.py F                                                                                                                                                         [ 22%]
cotede/humanqc/__init__.py F                                                                                                                                                                   [ 25%]
cotede/humanqc/humaneval.py F                                                                                                                                                                  [ 27%]
cotede/qctests/__init__.py F                                                                                                                                                                   [ 30%]
cotede/qctests/anomaly_detection.py F                                                                                                                                                          [ 32%]
cotede/qctests/bin_spike.py F                                                                                                                                                                  [ 35%]
cotede/qctests/cars_normbias.py F                                                                                                                                                              [ 37%]
cotede/qctests/constant_cluster_size.py s                                                                                                                                                      [ 40%]
cotede/qctests/cum_rate_of_change.py F                                                                                                                                                         [ 42%]
cotede/qctests/density_inversion.py F                                                                                                                                                          [ 45%]
cotede/qctests/descentPrate.py F                                                                                                                                                               [ 47%]
cotede/qctests/digit_roll_over.py F                                                                                                                                                            [ 50%]
cotede/qctests/fuzzylogic.py F                                                                                                                                                                 [ 52%]
cotede/qctests/global_range.py F                                                                                                                                                               [ 55%]
cotede/qctests/gradient.py F                                                                                                                                                                   [ 57%]
cotede/qctests/gradient_depthconditional.py s                                                                                                                                                  [ 60%]
cotede/qctests/location_at_sea.py F                                                                                                                                                            [ 62%]
cotede/qctests/morello2014.py F                                                                                                                                                                [ 65%]
cotede/qctests/possible_speed.py F                                                                                                                                                             [ 67%]
cotede/qctests/profile_envelop.py F                                                                                                                                                            [ 70%]
cotede/qctests/qctests.py F                                                                                                                                                                    [ 72%]
cotede/qctests/rate_of_change.py F                                                                                                                                                             [ 75%]
cotede/qctests/spike.py F                                                                                                                                                                      [ 77%]
cotede/qctests/spike_depthconditional.py F                                                                                                                                                     [ 80%]
cotede/qctests/stuck_value.py s                                                                                                                                                                [ 82%]
cotede/qctests/tukey53H.py F                                                                                                                                                                   [ 85%]
cotede/qctests/valid_geolocation.py F                                                                                                                                                          [ 87%]
cotede/qctests/woa_normbias.py F                                                                                                                                                               [ 90%]
cotede/utils/__init__.py F                                                                                                                                                                     [ 92%]
cotede/utils/config.py F                                                                                                                                                                       [ 95%]
cotede/utils/profilescollection.py F                                                                                                                                                           [ 97%]
cotede/utils/utils.py F                                                                                                                                                                        [100%]

============================================================================================== FAILURES ==============================================================================================
____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/__init__.py:7:1: F401 'cotede.qc' imported but unused

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/misc.py:38:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/misc.py:38:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/misc.py:44:80: E501 line too long (84 > 79 characters)

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:4:1: F401 'pkg_resources' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:6:1: F401 'os.path.basename' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:8:1: F401 'json' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:14:1: F403 'from cotede.qctests import *' used; unable to detect undefined names
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:26:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:29:28: W605 invalid escape sequence '\d'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:30:31: W605 invalid escape sequence '\d'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:31:28: W605 invalid escape sequence '\d'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:46:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:65:13: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:82:45: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:126:29: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:126:80: E501 line too long (81 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:128:29: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:135:17: F405 'LocationAtSea' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:170:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:173:17: F405 'ValidGeolocation' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:190:29: F405 'possible_speed' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:191:13: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:203:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:218:30: F405 'Bin_Spike' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:219:34: F405 'CARS_NormBias' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:220:42: F405 'ConstantClusterSize' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:221:39: F405 'CumRateOfChange' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:222:36: F405 'DigitRollOver' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:223:33: F405 'GlobalRange' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:224:29: F405 'Gradient' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:225:46: F405 'GradientDepthConditional' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:226:36: F405 'ProfileEnvelop' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:227:35: F405 'RateOfChange' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:228:26: F405 'Spike' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:229:43: F405 'SpikeDepthConditional' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:230:32: F405 'StuckValue' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:231:34: F405 'Tukey53H' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:232:33: F405 'WOA_NormBias' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:244:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:259:21: F405 'DensityInversion' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:268:13: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:271:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:281:34: E271 multiple spaces after keyword
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:286:17: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:288:45: F405 'spike' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:290:48: F405 'gradient' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:293:33: F405 'constant_cluster_size' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:295:53: F405 'tukey53H_norm' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:295:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:297:54: F405 'rate_of_change' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:297:80: E501 line too long (82 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:299:29: F405 'WOA_NormBias' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:301:33: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:303:29: F405 'CARS_NormBias' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:305:33: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:308:80: E501 line too long (89 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:311:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:311:21: F405 'anomaly_detection' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:317:44: F405 'morello2014' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:321:27: E271 multiple spaces after keyword
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:326:17: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:327:80: E501 line too long (81 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:329:43: F405 'fuzzylogic' may be undefined, or defined from star imports: cotede.qctests
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:368:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qc.py:368:53: E225 missing whitespace around operator

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/__init__.py:4:1: F401 '.anomaly_detection.estimate_anomaly' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/__init__.py:5:1: F403 'from .anomaly_detection import *' used; unable to detect undefined names
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/__init__.py:5:1: F401 '.anomaly_detection.*' imported but unused

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:19:80: E501 line too long (101 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:21:80: E501 line too long (489 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:23:80: E501 line too long (230 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:25:80: E501 line too long (91 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:39:1: F401 'cotede.misc.combined_flag' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:70:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:75:80: E501 line too long (86 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:114:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:159:26: E203 whitespace before ','
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:159:33: E702 multiple statements on one line (semicolon)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:161:55: E261 at least two spaces before inline comment
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:161:55: E262 inline comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:205:9: F821 undefined name 'pylab'
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:206:9: F821 undefined name 'pylab'
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:209:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:223:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:227:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:229:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:231:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:235:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:236:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:237:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:238:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:239:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:240:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:241:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:261:33: E712 comparison to True should be 'if cond is True:' or 'if cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:261:41: E221 multiple spaces before operator
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:273:32: E712 comparison to False should be 'if cond is False:' or 'if not cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:283:35: E231 missing whitespace after ','
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:283:52: E231 missing whitespace after ','
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:294:15: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:334:5: F401 'pandas as pd' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:347:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:348:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:349:5: F841 local variable 'features' is assigned to but never used
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:350:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:350:80: E501 line too long (89 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:351:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:352:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:353:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:354:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:357:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:359:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:360:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:361:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:362:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:363:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:366:5: E303 too many blank lines (2)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:366:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:367:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:369:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:371:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:374:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:375:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:376:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:378:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:380:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:388:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:390:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:400:5: F401 'pandas as pd' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:401:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:402:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:408:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:413:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:416:9: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:417:9: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:424:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:429:31: E712 comparison to False should be 'if cond is False:' or 'if not cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:446:21: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:447:21: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:462:80: E501 line too long (84 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:465:9: E303 too many blank lines (2)
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:466:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:467:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/anomaly_detection/anomaly_detection.py:468:13: E128 continuation line under-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/__init__.py:4:1: F401 '.fuzzy_core.fuzzyfy' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/__init__.py:4:1: F401 '.fuzzy_core.fuzzy_uncertainty' imported but unused

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/defuzz.py:17:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/defuzz.py:54:20: F821 undefined name 'centroid'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:18:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:29:5: F841 local variable 'N' is assigned to but never used
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:59:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:76:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:86:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:105:80: E501 line too long (388 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:112:80: E501 line too long (96 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/fuzzy_core.py:113:80: E501 line too long (172 > 79 characters)

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/membership_functions.py:17:1: F401 'numpy.ma' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/membership_functions.py:81:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/fuzzy/membership_functions.py:121:13: E127 continuation line over-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/__init__.py:4:1: F401 'cotede.humanqc.humaneval.HumanQC' imported but unused

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:12:1: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:25:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:42:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:64:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:68:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:71:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:74:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:74:27: E261 at least two spaces before inline comment
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:76:42: E712 comparison to False should be 'if cond is False:' or 'if not cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:76:42: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:77:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:77:37: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:81:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:82:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:86:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:89:9: E303 too many blank lines (2)
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:89:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:91:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:94:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:96:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:98:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:106:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:109:27: F821 undefined name 'refname'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:114:5: E303 too many blank lines (2)
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:123:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:124:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:126:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:127:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:129:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:130:38: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:134:30: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:135:13: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:139:32: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:143:32: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:147:32: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:151:32: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:155:32: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:159:13: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:160:63: W291 trailing whitespace
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:161:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:162:63: W291 trailing whitespace
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:163:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:166:32: E203 whitespace before ':'
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:173:37: E701 multiple statements on one line (colon)
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:176:17: E701 multiple statements on one line (colon)
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:195:58: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:196:57: E225 missing whitespace around operator
/home/jaustin/dev/castelao/CoTeDe/cotede/humanqc/humaneval.py:197:59: E225 missing whitespace around operator

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:3:1: F403 'from .qctests import *' used; unable to detect undefined names
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:3:1: F401 '.qctests.*' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:4:1: F401 '.descentPrate.descentPrate' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:5:1: F401 '.location_at_sea.LocationAtSea' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:5:1: F401 '.location_at_sea.location_at_sea' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:6:1: F401 '.profile_envelop.ProfileEnvelop' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:6:1: F401 '.profile_envelop.profile_envelop' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:7:1: F401 '.anomaly_detection.anomaly_detection' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:8:1: F401 '.possible_speed.possible_speed' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:9:1: F401 '.morello2014.morello2014' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:10:1: F401 '.fuzzylogic.fuzzylogic' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:12:1: F401 '.cum_rate_of_change.CumRateOfChange' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:12:1: F401 '.cum_rate_of_change.cum_rate_of_change' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:13:1: F401 '.global_range.GlobalRange' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:14:1: F401 '.rate_of_change.RateOfChange' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:14:1: F401 '.rate_of_change.rate_of_change' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:15:1: F401 '.gradient.Gradient' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:15:1: F401 '.gradient.gradient' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:16:1: F401 '.spike.Spike' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:16:1: F401 '.spike.spike' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:17:1: F401 '.bin_spike.Bin_Spike' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:17:1: F401 '.bin_spike.bin_spike' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:18:1: F401 '.tukey53H.Tukey53H' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:18:1: F401 '.tukey53H.tukey53H_norm' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:19:1: F401 '.woa_normbias.WOA_NormBias' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:19:1: F401 '.woa_normbias.woa_normbias' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:20:1: F401 '.cars_normbias.CARS_NormBias' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:21:1: F401 '.digit_roll_over.DigitRollOver' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:22:1: F401 '.constant_cluster_size.ConstantClusterSize' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:22:1: F401 '.constant_cluster_size.constant_cluster_size' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:23:1: F401 '.density_inversion.DensityInversion' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:23:1: F401 '.density_inversion.densitystep' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:24:1: F401 '.stuck_value.StuckValue' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:25:1: F401 '.gradient_depthconditional.GradientDepthConditional' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:26:1: F401 '.spike_depthconditional.SpikeDepthConditional' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/__init__.py:27:1: F401 '.valid_geolocation.ValidGeolocation' imported but unused

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/anomaly_detection.py:10:1: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/anomaly_detection.py:16:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/anomaly_detection.py:22:45: E251 unexpected spaces around keyword / parameter equals
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/anomaly_detection.py:22:47: E251 unexpected spaces around keyword / parameter equals
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/anomaly_detection.py:23:5: E265 block comment should start with '# '

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:27:13: E228 missing whitespace around modulo operator
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:62:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:68:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:75:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:76:80: E501 line too long (83 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:81:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/bin_spike.py:82:41: W291 trailing whitespace

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:6:1: F401 'datetime.timedelta' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:17:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:40:21: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:46:21: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:47:29: F821 undefined name 'data'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:47:52: F821 undefined name 'data'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:48:29: F821 undefined name 'data'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:48:53: F821 undefined name 'data'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:63:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:90:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:100:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:104:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:105:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:108:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:112:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:116:13: F841 local variable 'min_samples' is assigned to but never used
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cars_normbias.py:131:17: E127 continuation line over-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cum_rate_of_change.py:7:80: E501 line too long (331 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cum_rate_of_change.py:16:80: E501 line too long (93 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/cum_rate_of_change.py:52:9: E722 do not use bare 'except'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:14:5: F401 'gsw' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:15:1: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:34:9: F811 redefinition of unused 'gsw' from line 14
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:40:9: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:49:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:51:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:68:25: F821 undefined name 'threshold'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:69:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:69:18: F821 undefined name 'threshold'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:70:30: F821 undefined name 'threshold'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/density_inversion.py:78:13: E128 continuation line under-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/descentPrate.py:13:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/descentPrate.py:27:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/descentPrate.py:30:34: F821 undefined name 'np'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/digit_roll_over.py:22:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/digit_roll_over.py:32:80: E501 line too long (93 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/digit_roll_over.py:38:13: F841 local variable 'flag_good' is assigned to but never used
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/digit_roll_over.py:42:13: F841 local variable 'flag_bad' is assigned to but never used

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/fuzzylogic.py:24:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/fuzzylogic.py:27:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/fuzzylogic.py:30:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/fuzzylogic.py:40:42: E221 multiple spaces before operator
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/fuzzylogic.py:41:42: E221 multiple spaces before operator

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/global_range.py:23:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/global_range.py:27:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/global_range.py:30:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/global_range.py:31:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/global_range.py:31:20: F821 undefined name 'v'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/gradient.py:19:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/gradient.py:40:80: E501 line too long (93 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/gradient.py:44:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/gradient.py:45:41: W291 trailing whitespace

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:17:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:31:5: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:35:5: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:42:17: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:42:80: E501 line too long (124 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:45:17: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:45:80: E501 line too long (126 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:49:37: E711 comparison to None should be 'if cond is None:'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:52:17: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:59:17: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:75:5: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:94:80: E501 line too long (82 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:97:80: E501 line too long (82 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:107:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:144:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:159:80: E501 line too long (81 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/location_at_sea.py:160:80: E501 line too long (83 > 79 characters)

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/morello2014.py:20:5: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/morello2014.py:27:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/morello2014.py:30:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/morello2014.py:35:5: E266 too many leading '#' for block comment
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/morello2014.py:36:5: E265 block comment should start with '# '

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/possible_speed.py:21:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/possible_speed.py:31:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/possible_speed.py:33:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/possible_speed.py:35:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/possible_speed.py:38:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/possible_speed.py:42:13: E128 continuation line under-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/profile_envelop.py:35:20: E712 comparison to True should be 'if cond is True:' or 'if cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/profile_envelop.py:36:20: E712 comparison to False should be 'if cond is False:' or 'if not cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/profile_envelop.py:60:24: E712 comparison to True should be 'if cond is True:' or 'if cond:'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/profile_envelop.py:61:24: E712 comparison to False should be 'if cond is False:' or 'if not cond:'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:8:1: F401 'numpy as np' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:14:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:24:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:27:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:30:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:33:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:36:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:39:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:42:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:45:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:48:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:51:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:54:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:57:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:60:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:63:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:66:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/qctests.py:69:1: E302 expected 2 blank lines, found 1

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/rate_of_change.py:23:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/rate_of_change.py:39:9: E722 do not use bare 'except'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike.py:19:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike.py:24:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike.py:37:80: E501 line too long (93 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike.py:41:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike.py:42:41: W291 trailing whitespace

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike_depthconditional.py:35:80: E501 line too long (88 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike_depthconditional.py:48:80: E501 line too long (87 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/spike_depthconditional.py:53:80: E501 line too long (88 > 79 characters)

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/tukey53H.py:41:22: E741 ambiguous variable name 'l'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/tukey53H.py:61:21: E741 ambiguous variable name 'l'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/tukey53H.py:61:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/tukey53H.py:79:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/tukey53H.py:84:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/tukey53H.py:86:17: E127 continuation line over-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/valid_geolocation.py:36:80: E501 line too long (82 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/valid_geolocation.py:39:80: E501 line too long (82 > 79 characters)

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:18:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:64:17: F841 local variable 'd' is assigned to but never used
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:66:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:74:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:84:17: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:86:29: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:100:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:103:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:110:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:111:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:112:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:139:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:144:21: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:151:21: E117 over-indented
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:153:80: E501 line too long (86 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:154:80: E501 line too long (88 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:176:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:183:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:201:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:210:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:214:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:215:21: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:218:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:222:80: E501 line too long (80 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:232:17: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:238:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/qctests/woa_normbias.py:241:17: E128 continuation line under-indented for visual indent

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/__init__.py:3:1: F403 'from .utils import *' used; unable to detect undefined names
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/__init__.py:3:1: F401 '.utils.*' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/__init__.py:4:1: F401 'cotede.utils.profilescollection.ProfilesQCCollection' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/__init__.py:5:1: F401 'cotede.utils.profilescollection.ProfilesQCPandasCollection' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/__init__.py:6:1: F401 '.config.load_cfg' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/__init__.py:8:1: F401 'logging' imported but unused

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/config.py:14:80: E501 line too long (88 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/config.py:50:13: E127 continuation line over-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/config.py:64:9: E722 do not use bare 'except'

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:6:1: F401 'time' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:15:1: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:21:9: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:22:1: E115 expected an indented block (comment)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:26:80: E501 line too long (142 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:27:5: F811 redefinition of unused 'time' from line 6
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:27:16: E702 multiple statements on one line (semicolon)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:30:5: E303 too many blank lines (2)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:35:16: F821 undefined name 'CNVError'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:43:9: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:47:80: E501 line too long (142 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:48:5: F811 redefinition of unused 'time' from line 6
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:48:16: E702 multiple statements on one line (semicolon)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:56:5: F841 local variable 'teste' is assigned to but never used
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:70:20: F821 undefined name 'CNVError'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:77:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:87:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:98:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:127:50: W605 invalid escape sequence '\.'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:128:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:131:80: E501 line too long (146 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:132:9: F811 redefinition of unused 'time' from line 6
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:132:20: E702 multiple statements on one line (semicolon)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:138:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:156:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:159:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:162:21: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:173:25: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:180:29: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:197:50: W605 invalid escape sequence '\.'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:198:13: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:201:80: E501 line too long (146 > 79 characters)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:202:9: F811 redefinition of unused 'time' from line 6
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:202:20: E702 multiple statements on one line (semicolon)
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:206:9: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:215:17: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:216:9: E265 block comment should start with '# '
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:253:29: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:265:33: E128 continuation line under-indented for visual indent
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:266:13: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:280:17: F821 undefined name 'pd'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/profilescollection.py:288:80: E501 line too long (83 > 79 characters)

____________________________________________________________________________________________ FLAKE8-check ____________________________________________________________________________________________
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:5:1: F401 're' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:6:1: F401 'pkg_resources' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:7:1: F401 'json' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:23:1: E302 expected 2 blank lines, found 1
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:36:5: F401 'hashlib' imported but unused
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:63:5: E722 do not use bare 'except'
/home/jaustin/dev/castelao/CoTeDe/cotede/utils/utils.py:73:5: F401 'os' imported but unused

========================================================================================== warnings summary ==========================================================================================
cotede/qc.py::FLAKE8
  :41: DeprecationWarning: invalid escape sequence \d

cotede/utils/profilescollection.py::FLAKE8
  :127: DeprecationWarning: invalid escape sequence \.

cotede/utils/profilescollection.py::FLAKE8
  :197: DeprecationWarning: invalid escape sequence \.

-- Docs: https://docs.pytest.org/en/latest/warnings.html
============================================================================= 37 failed, 3 skipped, 3 warnings in 2.33s ==============================================================================

castelao added a commit that referenced this issue Mar 4, 2020
I've been using black to format the code. I'll not refuse contributions
just due to bad formating.
@castelao castelao closed this as completed Mar 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants