style: Format code to comply with linter rules

This commit is contained in:
Paul Gauthier (aider) 2024-09-04 14:32:38 -07:00
parent 41e8f4401e
commit 7c5cad74ab

View file

@ -27,6 +27,7 @@ class TestLinter(unittest.TestCase):
def test_get_rel_fname(self):
import os
self.assertEqual(self.linter.get_rel_fname("/test/root/file.py"), "file.py")
expected_path = os.path.normpath("../../other/path/file.py")
actual_path = os.path.normpath(self.linter.get_rel_fname("/other/path/file.py"))