Skip to content

Commit

Permalink
remove unused dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
arska committed Dec 22, 2021
1 parent 5ddcb9d commit 50bf9b8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import logging

from controlmyspa import ControlMySpa
import json
import pprint

PARSER = argparse.ArgumentParser(description="Get metrics from Balboa Controlmyspa")
Expand All @@ -34,11 +33,11 @@
info = API._info

# remove potentially sensitive information
del(info['owner'])
del(info['p2pAPSSID'])
del(info['serialNumber'])
del(info['_id'])
del(info['_links'])
del info["owner"]
del info["p2pAPSSID"]
del info["serialNumber"]
del info["_id"]
del info["_links"]

# print remaining data
pprint.pprint(API._info)

0 comments on commit 50bf9b8

Please sign in to comment.