Skip to content

Commit

Permalink
chore: removed unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
riyasng12 committed Jan 10, 2024
1 parent 99eb0e2 commit 3b5830a
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,4 @@ def run_polkadot_setup(plan, chain_type, relaychain, parachains, explorer):
explorer_service_details = explorer_js.run_pokadot_js_app(plan, "ws://127.0.0.1:9944")

service_details.update(explorer_service_details)
return service_details

def convert_to_lowercase(data):
if type(data) == dict:
return {key: convert_to_lowercase(value) for key, value in data.items()}
elif type(data) == list:
return [convert_to_lowercase(item) for item in data]
elif type(data) == str:
return data.lower()
else:
return data
return service_details

0 comments on commit 3b5830a

Please sign in to comment.