This is an automated email from the ASF dual-hosted git repository.
tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git
The following commit(s) were added to refs/heads/trunk by this push:
new be0765d Fix lint.
be0765d is described below
commit be0765df384f1baccde24539156119856cb96816
Author: Tomaz Muraus <[email protected]>
AuthorDate: Wed Oct 9 13:37:02 2019 +0200
Fix lint.
---
libcloud/compute/drivers/packet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libcloud/compute/drivers/packet.py
b/libcloud/compute/drivers/packet.py
index 40c3a65..5f05e58 100644
--- a/libcloud/compute/drivers/packet.py
+++ b/libcloud/compute/drivers/packet.py
@@ -239,7 +239,7 @@ def _list_async(driver):
data = self.connection.request('/projects/%s/plans' %
project_id).object['plans']
else: # This only works with personal tokens
- data = self.connection.request('/plans' ).object['plans']
+ data = self.connection.request('/plans').object['plans']
return [self._to_size(size) for size in data if
size.get('line') == 'baremetal']