Skip to content

Commit

Permalink
hotfix: add default value to is_secure
Browse files Browse the repository at this point in the history
  • Loading branch information
apogiatzis committed Oct 1, 2020
1 parent 86c4e35 commit 83b42d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygate_grpc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


class PowerGateClient(object):
def __init__(self, host_name, is_secure):
def __init__(self, host_name, is_secure=False):
self.health = health.HealthClient(host_name, is_secure)
self.faults = faults.FaultsClient(host_name, is_secure)
self.buildinfo = buildinfo.BuildinfoClient(host_name, is_secure)
Expand Down

0 comments on commit 83b42d4

Please sign in to comment.