# HG changeset patch # User Mads Kiilerich # Date 2019-08-04 01:49:22 # Node ID 395f21a36a6b06492569c6aa9007dd1e3328ed42 # Parent ff764c0e7792b62ec6be83c5539fd0e15101ab98 flake8: fix E303 too many blank lines diff --git a/kallithea/lib/helpers.py b/kallithea/lib/helpers.py --- a/kallithea/lib/helpers.py +++ b/kallithea/lib/helpers.py @@ -847,9 +847,6 @@ def action_parser(user_log, feed=False, return [lambda: literal(action), action_params_func, action_parser_icon] - - - #============================================================================== # GRAVATAR URL #============================================================================== diff --git a/kallithea/lib/vcs/utils/progressbar.py b/kallithea/lib/vcs/utils/progressbar.py --- a/kallithea/lib/vcs/utils/progressbar.py +++ b/kallithea/lib/vcs/utils/progressbar.py @@ -417,6 +417,5 @@ def main(): print - if __name__ == '__main__': main()