Skip to content

Commit

Permalink
formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgstew committed Feb 16, 2023
1 parent 10c008e commit 5697afc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/besapi/besapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ def elem2dict(node):
else:
value = elem2dict(element)
if key in result:

if type(result[key]) is list:
result[key].append(value)
else:
Expand Down Expand Up @@ -196,7 +195,6 @@ class BESConnection:
"""BigFix RESTAPI connection abstraction class"""

def __init__(self, username, password, rootserver, verify=False):

if not verify:
# disable SSL warnings
requests.packages.urllib3.disable_warnings() # pylint: disable=no-member
Expand Down
1 change: 0 additions & 1 deletion src/bescli/bescli.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ def do_conf(self, conf_file=None):
self.conf_path = found_config_files[0]

if self.CONFPARSER:

try:
self.BES_ROOT_SERVER = self.CONFPARSER.get("besapi", "BES_ROOT_SERVER")
except BaseException:
Expand Down

0 comments on commit 5697afc

Please sign in to comment.