Proper function parameter default

Change `protocol_version` default to `None` because `protocol_version`
is determined below and has the same default.

ZD #1159
This commit is contained in:
David Boucha 2017-01-23 13:05:38 -07:00
parent 41a3055213
commit c475609683

View file

@ -194,7 +194,7 @@ def _get_ssl_opts():
def _connect(contact_points=None, port=None, cql_user=None, cql_pass=None,
protocol_version=4):
protocol_version=None):
'''
Connect to a Cassandra cluster.