summaryrefslogtreecommitdiff
path: root/test/test_settings.py
diff options
context:
space:
mode:
authormilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2022-03-05 23:29:06 +0000
committermilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2022-03-05 23:29:06 +0000
commit39b1aac57576b41e48c5cd26f5e6fe462a0161db (patch)
tree4455bc51d7430b34b4e5e9cc32e28d07444ff70f /test/test_settings.py
parent71b57ec368042443d6a4703f56d0c87a5829be66 (diff)
downloaddocutils-39b1aac57576b41e48c5cd26f5e6fe462a0161db.tar.gz
Avoid multiple statements on one line. Fix redundant backslash
Exceptions for sets of empty class definitions and other cases where it improves comprehension. flake8 rules E502: the backslash is redundant between brackets E701: multiple statements on one line (colon) E704: multiple statements on one line (def) git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9032 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'test/test_settings.py')
-rwxr-xr-xtest/test_settings.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_settings.py b/test/test_settings.py
index bd82d2810..719e79bc2 100755
--- a/test/test_settings.py
+++ b/test/test_settings.py
@@ -225,7 +225,8 @@ class ConfigEnvVarFileTests(ConfigFileTests):
def tearDown(self):
os.environ = self.orig_environ
- def test_old(self): pass # don't repreat this test
+ def test_old(self):
+ pass # don't repreat this test
@unittest.skipUnless(
os.name == 'posix',