[formatting] reformat using "black -t py34"

getting rid of thinking about consistent formatting...
This commit is contained in:
tobi-wan-kenobi 2020-05-03 11:15:52 +02:00
parent fa98bcbdd1
commit 30c1f712a6
119 changed files with 3961 additions and 3495 deletions

View file

@ -3,15 +3,19 @@ import unittest
import core.config
import modules.core.kernel
class kernel(unittest.TestCase):
def setUp(self):
self.someKernel = 'this-is-my-kernel'
self.module = modules.core.kernel.Module(config=core.config.Config([]), theme=None)
self.someKernel = "this-is-my-kernel"
self.module = modules.core.kernel.Module(
config=core.config.Config([]), theme=None
)
def test_full_text(self):
with unittest.mock.patch('modules.core.kernel.platform') as platform:
with unittest.mock.patch("modules.core.kernel.platform") as platform:
platform.release.return_value = self.someKernel
self.assertEqual(1, len(self.module.widgets()))
self.assertEqual(self.someKernel, self.module.widget().full_text())
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4