<div dir="ltr"><div>Hello everyone,</div><div><br></div><div>I want to start by stating this is a minor issue that I don't <b>believe</b> has a fix without changes to the source code. With that in mind, I think it's worthwhile and simple to fix.</div><div><br></div><div>When generating Python files from .ui files using <i>pyuic5, </i>the Python file only includes one space between the imports & beginning of classes. For example:</div><div><div style="color:rgb(212,212,212);background-color:rgb(30,30,30);font-family:"Fira Code",Consolas,"Courier New",monospace;font-size:14px;line-height:19px;white-space:pre"><div><span style="color:rgb(106,153,85)"># -*- coding: utf-8 -*-</span></div><br><div><span style="color:rgb(106,153,85)"># Form implementation generated from reading ui file 'mainWindow.ui'</span></div><div><span style="color:rgb(106,153,85)">#</span></div><div><span style="color:rgb(106,153,85)"># Created by: PyQt5 UI code generator 5.9</span></div><div><span style="color:rgb(106,153,85)">#</span></div><div><span style="color:rgb(106,153,85)"># WARNING! All changes made in this file will be lost!</span></div><br><div><span style="color:rgb(197,134,192)">from</span> PyQt5 <span style="color:rgb(197,134,192)">import</span> QtCore, QtGui, QtWidgets</div><br><div><span style="color:rgb(86,156,214)">class</span> <span style="color:rgb(78,201,176)">Ui_MainWindow</span>(<span style="color:rgb(78,201,176)">object</span>):</div><div>    <span style="color:rgb(86,156,214)">def</span> <span style="color:rgb(220,220,170)">setupUi</span>(<span style="color:rgb(156,220,254)">self</span>, <span style="color:rgb(156,220,254)">MainWindow</span>):</div><div>        MainWindow.setObjectName(<span style="color:rgb(206,145,120)">"MainWindow"</span>)</div><div>        MainWindow.resize(<span style="color:rgb(181,206,168)">837</span>, <span style="color:rgb(181,206,168)">727</span>)</div><div>        <span style="color:rgb(86,156,214)">self</span>.centralwidget = QtWidgets.QWidget(MainWindow)</div><div>        <span style="color:rgb(86,156,214)">self</span>.centralwidget.setObjectName(<span style="color:rgb(206,145,120)">"centralwidget"</span>)</div><div>...</div></div></div><div><br></div><div>I use <i>flake8 </i>in my project to automatically lint and detect whitespace issues in my project. These auto-generated files are giving the following error:</div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><b><i>E0302 - Expected 2 blank lines, found 1</i></b></div></blockquote><div dir="ltr"><br></div><div>Here is the PEP8 reference that explains that there should be two spaces between the import statements and class definition: <a href="https://www.python.org/dev/peps/pep-0008/#blank-lines">https://www.python.org/dev/peps/pep-0008/#blank-lines</a></div><div><br></div><div>Thanks,</div><div>Addison</div></div>