File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 check :
3636 jobs :
3737 - otc-tox-pep8
38- - otc-tox-py310
38+ - otc-tox-py311
3939 - tox-functional-eu-de
4040 - tox-functional-eu-nl :
4141 voting : false
4545 - otce-upload-image
4646 gate :
4747 jobs :
48- - otc-tox-py310
48+ - otc-tox-py311
4949 - otc-tox-pep8
5050 - tox-functional-eu-de
5151 - otce-upload-image
Original file line number Diff line number Diff line change @@ -24,8 +24,10 @@ def _is_collection_name(part):
2424
2525
2626def _is_dynamic_path_part (part ):
27- return part .startswith ("urn:" ) or len (part ) >= 16 and all (
28- char in "0123456789abcdefABCDEF-" for char in part
27+ return (
28+ part .startswith ("urn:" )
29+ or len (part ) >= 16
30+ and all (char in "0123456789abcdefABCDEF-" for char in part )
2931 )
3032
3133
Original file line number Diff line number Diff line change @@ -182,8 +182,7 @@ def test_extract_name(self):
182182
183183 def test_extract_name_for_documented_endpoints (self ):
184184 topic_urn = (
185- "urn:smn:regionId:8bad8a40e0f7462f8c1676e3f93a8183:"
186- "test_create_topic_v2"
185+ "urn:smn:regionId:8bad8a40e0f7462f8c1676e3f93a8183:" "test_create_topic_v2"
187186 )
188187 subscription_urn = f"{ topic_urn } :subscription_id"
189188 endpoints = [
You can’t perform that action at this time.
0 commit comments