From 58d4348154a721e0e167099cd47c18d58cd435a7 Mon Sep 17 00:00:00 2001 From: Marcus Fedarko Date: Fri, 2 Aug 2024 18:14:58 -0700 Subject: [PATCH] STY: fix line length in an unrelated file far as i can tell, both my system and gh actions are using flake8 7.1.0, so idk why only gh actions complained about the 80 char line length. whatever it's worth fixing i guess --- tests/python/test_taxonomy_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/python/test_taxonomy_utils.py b/tests/python/test_taxonomy_utils.py index 657b451ad..cb8ab23d9 100644 --- a/tests/python/test_taxonomy_utils.py +++ b/tests/python/test_taxonomy_utils.py @@ -57,9 +57,9 @@ def setUp(self): ) def _check_basic_case_worked(self, split_fm, taxcols): - """Checks that a given DataFrame (and list of split-up taxonomy columns) - matches the expected output from running split_taxonomy() on - self.feature_metadata. + """Checks that a given DataFrame (and list of split-up taxonomy + columns) matches the expected output from running split_taxonomy() + on self.feature_metadata. """ # Let's verify that split_fm looks how we expect it to look.