Skip to content

Commit fb462b4

Browse files
committed
fmt
1 parent 3397d85 commit fb462b4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

sdks/python/apache_beam/io/kinesis.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -157,17 +157,17 @@ def __init__(
157157
# https://javadoc.io/doc/com.amazonaws/amazon-kinesis-producer/0.14.0/com/amazonaws/services/kinesis/producer/KinesisProducerConfiguration.html#isVerifyCertificate--
158158
# With the new AWS client, we no longer support it and it is always True
159159
raise ValueError(
160-
'verify_certificate set to False. This option is no longer ' +
161-
'supported and certificate verification will still happen.')
160+
'verify_certificate set to False. This option is no longer ' +
161+
'supported and certificate verification will still happen.')
162162
if verify_certificate is True:
163163
logging.warning(
164-
'verify_certificate set to True. This option is no longer ' +
165-
'supported and certificate verification will automatically happen. ' +
166-
'This option may be removed in a future release')
164+
'verify_certificate set to True. This option is no longer ' +
165+
'supported and certificate verification will automatically ' +
166+
'happen. This option may be removed in a future release')
167167
if producer_properties is not None:
168168
raise ValueError(
169-
'producer_properties is no longer supported and will be removed in ' +
170-
'a future release.')
169+
'producer_properties is no longer supported and will be removed ' +
170+
'in a future release.')
171171
super().__init__(
172172
self.URN,
173173
NamedTupleBasedPayloadBuilder(
@@ -294,13 +294,13 @@ def __init__(
294294
# https://javadoc.io/doc/com.amazonaws/amazon-kinesis-producer/0.14.0/com/amazonaws/services/kinesis/producer/KinesisProducerConfiguration.html#isVerifyCertificate--
295295
# With the new AWS client, we no longer support it and it is always True
296296
raise ValueError(
297-
'verify_certificate set to False. This option is no longer ' +
298-
'supported and certificate verification will still happen.')
297+
'verify_certificate set to False. This option is no longer ' +
298+
'supported and certificate verification will still happen.')
299299
if verify_certificate is True:
300300
logging.warning(
301-
'verify_certificate set to True. This option is no longer ' +
302-
'supported and certificate verification will automatically happen. ' +
303-
'This option may be removed in a future release')
301+
'verify_certificate set to True. This option is no longer ' +
302+
'supported and certificate verification will automatically ' +
303+
'happen. This option may be removed in a future release')
304304

305305
super().__init__(
306306
self.URN,

0 commit comments

Comments
 (0)