Commit Graph

3 Commits

Author SHA1 Message Date
Vijendar Komalla 528dff14f0 Fix quotas API pagination
Currently quotas-list operation with limit is failing
since there is no uuid attribute defined in Quota object.
(Please refer to bug#1662935 report for more details)

Change-Id: I7ec53f990b1223fe3c72fc7a20fb8261c12e8398
Closes-Bug: #1662935
2017-02-14 12:33:27 -06:00
Accela Zhao 7344fcf2a7 Fix continuation line under/over indented problems
When you are writing a multiple method invocation (or other similar
syntax)

```
obj.method(argument1,
           argument2,
           ...)
```

If you put argument1 in the first line, the following lines should have
the same hanging distance to argument1.

If you put argument1 in the second line, the hanging distance should
always be four.

```
obj.method(
    argument1,
    argument2,
    ...
)
```

Otherwise PEP8 would complain for continuation line under/over indented
problems. See below for more details

https://www.python.org/dev/peps/pep-0008/#indentation

This patch fixes all the continuation line indentation problems and
enables related checks in tox.ini.

Closes-bug: #1459514
Change-Id: I80995c2ae71b817ad78a87ab7c567f0d36112710
2015-05-30 00:16:37 +08:00
Steven Dake e68f763b95 Add versioned object dependency modules
These modules don't actually do anything at this point in the patch
stream.  These are straight copies from Ironic with things renamed.
They become later dependencies for existing modules.

Change-Id: I355312e48d38e84e3ec1e3a906ae5155dbce4359
2014-12-02 02:25:40 -07:00