From b31c7ccd2417f43a531f5b2e7adfa72e575e2ea2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 3 Oct 2021 15:02:47 +0200 Subject: [PATCH] PEP fix --- InvenTree/plugins/samples/action/test_samples_action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugins/samples/action/test_samples_action.py b/InvenTree/plugins/samples/action/test_samples_action.py index 27b4a16150..595c3fa948 100644 --- a/InvenTree/plugins/samples/action/test_samples_action.py +++ b/InvenTree/plugins/samples/action/test_samples_action.py @@ -25,7 +25,7 @@ class SimpleActionPluginTests(TestCase): def test_function(self): """check if functions work """ # test functions - response = self.client.post('/api/action/', data={'action': "simple", 'data': {'foo': "bar",}}) + response = self.client.post('/api/action/', data={'action': "simple", 'data': {'foo': "bar", }}) self.assertEqual(response.status_code, 200) self.assertJSONEqual( str(response.content, encoding='utf8'),