Skip to content

Commit 5bdbf08

Browse files
committed
Merge pull request #127 from nharasym/master
added floating_ip_limit support to account
2 parents 438479d + e03820a commit 5bdbf08

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

digitalocean/Account.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
class Account(BaseAPI):
66
def __init__(self, *args, **kwargs):
77
self.droplet_limit = None
8+
self.floating_ip_limit = None
89
self.email = None
910
self.uuid = None
1011
self.email_verified = None

digitalocean/tests/data/account/account.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"account": {
33
"droplet_limit": 25,
4+
"floating_ip_limit": 3,
45
"email": "web@digitalocean.com",
56
"uuid": "b6fc48dbf6d9906cace5f3c78dc9851e757381ef",
67
"email_verified": true,

0 commit comments

Comments
 (0)