clear-skies 1.22.12__py3-none-any.whl → 1.22.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of clear-skies might be problematic. Click here for more details.
- {clear_skies-1.22.12.dist-info → clear_skies-1.22.13.dist-info}/METADATA +1 -1
- {clear_skies-1.22.12.dist-info → clear_skies-1.22.13.dist-info}/RECORD +5 -5
- clearskies/handlers/simple_routing_route.py +5 -0
- {clear_skies-1.22.12.dist-info → clear_skies-1.22.13.dist-info}/LICENSE +0 -0
- {clear_skies-1.22.12.dist-info → clear_skies-1.22.13.dist-info}/WHEEL +0 -0
|
@@ -154,7 +154,7 @@ clearskies/handlers/restful_api.py,sha256=1rJ2REX1sTAdbqaRuCclP375agrho4zNNQx6hX
|
|
|
154
154
|
clearskies/handlers/routing.py,sha256=uWKWcEaiHVqfDebPkQVuG9AS8pOixW31wW0yIQ-25Aw,3079
|
|
155
155
|
clearskies/handlers/schema_helper.py,sha256=62644USvFlZu_6tT7rb-k6t_5J3Q0uZsJwP5KREk_WM,4961
|
|
156
156
|
clearskies/handlers/simple_routing.py,sha256=xMVfBas51pZOP8xvDmeH6L-iO6CGIrICyT5yUYceJOs,9550
|
|
157
|
-
clearskies/handlers/simple_routing_route.py,sha256=
|
|
157
|
+
clearskies/handlers/simple_routing_route.py,sha256=vJYksR4UPWpPsMX6DhpBtCj5gyZOIytqZL-O6FKu4_c,9271
|
|
158
158
|
clearskies/handlers/simple_search.py,sha256=bSfq8rzdqkBj-dTGUBSZ1EkfjzUWHID7mKD2xEf8VzQ,6165
|
|
159
159
|
clearskies/handlers/update.py,sha256=rx8HW87Pfh95e_9nEfKKnxfkh2HBlCUdYqVwljtXiJ8,4116
|
|
160
160
|
clearskies/handlers/write.py,sha256=Gu1w1PQ1F7tlqCqALorMRek3UH6IkViPIO195dxPd8k,9372
|
|
@@ -207,7 +207,7 @@ clearskies/tests/simple_api/models/__init__.py,sha256=nUA0W6fgXw_Bxa9CudkaDkC80t
|
|
|
207
207
|
clearskies/tests/simple_api/models/status.py,sha256=PEhPbaQh5qdUNHp8O0gz91LOLENAEBtqSaHxUPXchaM,699
|
|
208
208
|
clearskies/tests/simple_api/models/user.py,sha256=5_P4Tp1tTdX7PkMJ__epPM5MA7JAeVYGas69vcWloLc,819
|
|
209
209
|
clearskies/tests/simple_api/users_api.py,sha256=KYXCgEofDxHeRdQK67txN5oYUPvxxmB8JTku7L-apk4,2344
|
|
210
|
-
clear_skies-1.22.
|
|
211
|
-
clear_skies-1.22.
|
|
212
|
-
clear_skies-1.22.
|
|
213
|
-
clear_skies-1.22.
|
|
210
|
+
clear_skies-1.22.13.dist-info/LICENSE,sha256=3Ehd0g3YOpCj8sqj0Xjq5qbOtjjgk9qzhhD9YjRQgOA,1053
|
|
211
|
+
clear_skies-1.22.13.dist-info/METADATA,sha256=uyVQJDEl7DUKsFpYF7lKzFt_Q8weBiqoq9H1O3jyRlM,1818
|
|
212
|
+
clear_skies-1.22.13.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
213
|
+
clear_skies-1.22.13.dist-info/RECORD,,
|
|
@@ -179,6 +179,11 @@ class SimpleRoutingRoute:
|
|
|
179
179
|
|
|
180
180
|
# do we have any resource paths to document?
|
|
181
181
|
for path_name in self._resource_paths.values():
|
|
182
|
+
# we can get duplicates because of our hierarchical nature. This is mildly kludgy, but we'll go
|
|
183
|
+
# with it for now.
|
|
184
|
+
if len([True for parameter in doc.parameters if isinstance(parameter, URLPath) and parameter.definition.name == path_name]):
|
|
185
|
+
continue
|
|
186
|
+
|
|
182
187
|
description = f"The {path_name} to show results for"
|
|
183
188
|
doc.add_parameter(URLPath(String(path_name), description=description, required=True))
|
|
184
189
|
|
|
File without changes
|
|
File without changes
|