]> git.phdru.name Git - m_librarian.git/commitdiff
Fix flake8 E305: expected 2 blank lines after function
authorOleg Broytman <phd@phdru.name>
Wed, 26 Apr 2017 18:19:50 +0000 (21:19 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 26 Apr 2017 18:19:50 +0000 (21:19 +0300)
m_librarian/config.py
m_librarian/db.py
m_librarian/download.py
m_librarian/glst.py

index e1ee7d935d8616ee61d16b3d916fdb7ba7d320ff..4abed14ebc699d430f02cd0940abd5754c358c96 100755 (executable)
@@ -57,5 +57,6 @@ def test():
     print("Config dirs:", config_dirs)
     print("Config file:", find_config_file(config_dirs))
 
+
 if __name__ == '__main__':
     test()
index 42735afe8f3b9b2fa1c12b1a90d2b72ddcda9be1..628675ef1e2c9d3ce4573ba1240b542784d5e499 100755 (executable)
@@ -225,5 +225,6 @@ def test():
     print("DB dirs:", db_dirs)
     print("DB URI:", find_sqlite_dburi())
 
+
 if __name__ == '__main__':
     test()
index 6f4daf4fe31e17d2cb75a13e9206dff317cfa2b4..db09f12f08e263b786abef9fbb804a2ae7de7ed6 100755 (executable)
@@ -111,5 +111,6 @@ def test():
     _compile_format()
     print(compiled_format)
 
+
 if __name__ == '__main__':
     test()
index 0ceba1a350f64a7da2a91fb83f32a3f33246c0b5..cf581b1d14c1f0c6a1a70891fbb291b4f5f31971 100755 (executable)
@@ -63,5 +63,6 @@ def test():
     ml_dir = os.path.dirname(__file__)
     print(parse_glst_file(os.path.join(ml_dir, 'glst', 'genres_fb2.glst')))
 
+
 if __name__ == '__main__':
     test()