Skip to content

Commit b30e955

Browse files
authored
Merge pull request #2580 from tswast/int-not-integer
Replaces integer with int in types and rtypes.
2 parents 5481719 + b49c070 commit b30e955

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

google/cloud/dns/resource_record_set.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ResourceRecordSet(object):
2929
:type record_type: str
3030
:param record_type: the RR type of the zone.
3131
32-
:type ttl: integer
32+
:type ttl: int
3333
:param ttl: TTL (in seconds) for caching the record sets.
3434
3535
:type rrdatas: list of string

google/cloud/dns/zone.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def resource_record_set(self, name, record_type, ttl, rrdatas):
180180
:type record_type: str
181181
:param record_type: RR type
182182
183-
:type ttl: integer
183+
:type ttl: int
184184
:param ttl: TTL for the RR, in seconds
185185
186186
:type rrdatas: list of string

0 commit comments

Comments
 (0)