Remove trailing commas
Closes #790
Signed-off-by: Tomaz Muraus <tomaz@tomaz.me>
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/51ab7b35
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/51ab7b35
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/51ab7b35
Branch: refs/heads/trunk
Commit: 51ab7b35af66715d3b29f8c97642e09959dc7f56
Parents: 029a5d0
Author: Anže Pečar <ensmotko@gmail.com>
Authored: Wed May 18 23:14:01 2016 +0200
Committer: Tomaz Muraus <tomaz@tomaz.me>
Committed: Fri May 20 11:21:47 2016 +0200
----------------------------------------------------------------------
libcloud/compute/drivers/ec2.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/libcloud/blob/51ab7b35/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index d81a35f..bc2a9fb 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -650,7 +650,7 @@ INSTANCE_TYPES = {
'extra': {
'cpu': 128
}
- },
+ }
}
# From <https://aws.amazon.com/marketplace/help/200777880>
@@ -990,7 +990,7 @@ REGION_DETAILS = {
't2.small',
't2.medium',
't2.large',
- 'x1.32xlarge',
+ 'x1.32xlarge'
]
},
# Asia Pacific (Tokyo) Region
|