@@ -133,8 +133,7 @@ Linting_:
133133 arg1 ,
134134 arg2 ,
135135 optional_arg1 = None ,
136- ):
137- ...
136+ ): ...
138137
139138 There is some exceptions to this:
140139
@@ -144,8 +143,7 @@ Linting_:
144143 .. code-block :: python
145144
146145 class ExampleClass :
147- def pair (self , left , right ):
148- ...
146+ def pair (self , left , right ): ...
149147
150148 - If there is one or two mandatory arguments and some optional arguments, then the
151149 mandatory arguments may be positional (as long as it adheres to the previous point),
@@ -171,8 +169,7 @@ Linting_:
171169 send_replies = True ,
172170 spoiler = False ,
173171 url = None ,
174- ):
175- ...
172+ ): ...
176173
177174 Testing
178175-------
@@ -250,18 +247,15 @@ Examples:
250247 @pytest.mark.recorder_kwargs (allow_playback_repeats = True )
251248 class TestClass :
252249 @pytest.mark.recorder_kwargs (match_requests_on = [" uri" , " method" , " body" ])
253- def test_example (self ):
254- ...
250+ def test_example (self ): ...
255251
256252 @pytest.mark.cassette_name (" TestClass.test_example" )
257253 @pytest.mark.recorder_kwargs (match_requests_on = [" uri" , " method" , " body" ])
258- def test_example__different_assertion (self ):
259- ...
254+ def test_example__different_assertion (self ): ...
260255
261256 @pytest.mark.add_placeholder (generated_data_a = generate_data_a())
262257 @pytest.mark.add_placeholder (generated_data_b = generate_data_b())
263- def test_example__with_generated_placeholders (self ):
264- ...
258+ def test_example__with_generated_placeholders (self ): ...
265259
266260 Documentation
267261-------------
0 commit comments