فهرست منبع

support/testing/tests/package/sample_python_unittest_xml_reporting.py: fix flake8 warnings

Fixes:

support/testing/tests/package/sample_python_unittest_xml_reporting.py:4:1: E302 expected 2 blank lines, found 1
support/testing/tests/package/sample_python_unittest_xml_reporting.py:8:1: E305 expected 2 blank lines after class or function definition, found 1
1     E302 expected 2 blank lines, found 1
1     E305 expected 2 blank lines after class or function definition, found 1

Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Pierre-Jean Texier 3 سال پیش
والد
کامیت
38c1c535ad
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      support/testing/tests/package/sample_python_unittest_xml_reporting.py

+ 2 - 0
support/testing/tests/package/sample_python_unittest_xml_reporting.py

@@ -1,9 +1,11 @@
 import unittest
 import xmlrunner
 
+
 class Test1(unittest.TestCase):
     def test_something(self):
         self.assertTrue(True)
 
+
 if __name__ == '__main__':
     unittest.main(testRunner=xmlrunner.XMLTestRunner(output='test-reports'))