Skip to content

Commit 5d500ab

Browse files
committed
Fix lint failure due to long line.
1 parent 4ca99f5 commit 5d500ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gcloud/datastore/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_protobuf_attribute_and_value(val):
5656
elif isinstance(val, float):
5757
name, value = 'double', val
5858
elif isinstance(val, (int, long)):
59-
INT_VALUE_CHECKER.CheckValue(val) # This will raise an exception if invalid.
59+
INT_VALUE_CHECKER.CheckValue(val) # Raise an exception if invalid.
6060
name, value = 'integer', long(val) # Always cast to a long.
6161
elif isinstance(val, basestring):
6262
name, value = 'string', val

0 commit comments

Comments
 (0)