Skip to content

Commit c151453

Browse files
author
Tom Reitz
committed
remove prints statements
1 parent c90bd0a commit c151453

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

lightbeam/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def get_identity_params_from_swagger(self, swagger, definition, prefix=""):
369369
schema = util.resolve_swagger_ref(swagger, definition)
370370
if not schema:
371371
self.logger.critical(f"Swagger contains neither `definitions` nor `components.schemas` - check that the Swagger is valid.")
372-
print(definition, schema)
372+
373373
for prop in schema["properties"]:
374374
if prop.endswith("Reference") and "required" in schema.keys() and prop in schema['required'] and "$ref" in schema["properties"][prop].keys():
375375
sub_definition = schema["properties"][prop]["$ref"]

lightbeam/delete.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ async def do_deletes(self, endpoint):
5757
interpolation_type = 'required'
5858
if self.lightbeam.api.reports_identity: interpolation_type = 'identity'
5959
params_structure = self.lightbeam.api.get_params_for_endpoint(endpoint, type=interpolation_type)
60-
print(params_structure)
6160

6261
# for Descriptors, we need to fetch all Descriptor values first, then we can look up the ID for deletion
6362
if endpoint.endswith('Descriptors'):

0 commit comments

Comments
 (0)