From 9f88dc3a6765ae47be48f530892362516acf7bda Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 25 Apr 2022 12:43:36 -0400 Subject: [PATCH] correct string example for E501 exclusions https://github.com/PyCQA/pycodestyle/issues/1064 --- docs/source/user/options.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/user/options.rst b/docs/source/user/options.rst index 5eb8e35..ab333c8 100644 --- a/docs/source/user/options.rst +++ b/docs/source/user/options.rst @@ -568,9 +568,9 @@ Options and their Descriptions # https://some-super-long-domain-name.com/with/some/very/long/path - url = ( - 'https://...' - ) + url = '''\ + https://... + ''' This defaults to: ``79``