diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-04-09 14:36:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-13 22:33:20 +0100 |
commit | d0d0ab85c49d7a874bef8b8d8844bbe9b1dc0c49 (patch) | |
tree | 7907a4a29e7d02b43af97f6f12c156519517438f /scripts/lib/wic/utils/fs_related.py | |
parent | 1521a3dda0a6ebcedb52f4a410f705c8d68d0a11 (diff) | |
download | poky-d0d0ab85c49d7a874bef8b8d8844bbe9b1dc0c49.tar.gz |
wic:code cleanup: No space allowed
Fixed pylint warning
'No space allowed around keyword argument assignment'
(From OE-Core rev: e07dd9b9c71960fbeded162ed52fbce06de620e9)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/utils/fs_related.py')
-rw-r--r-- | scripts/lib/wic/utils/fs_related.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/utils/fs_related.py b/scripts/lib/wic/utils/fs_related.py index 1e266b16c1..d0bc8ee6d3 100644 --- a/scripts/lib/wic/utils/fs_related.py +++ b/scripts/lib/wic/utils/fs_related.py | |||
@@ -57,7 +57,7 @@ class Disk: | |||
57 | """ | 57 | """ |
58 | Generic base object for a disk. | 58 | Generic base object for a disk. |
59 | """ | 59 | """ |
60 | def __init__(self, size, device = None): | 60 | def __init__(self, size, device=None): |
61 | self._device = device | 61 | self._device = device |
62 | self._size = size | 62 | self._size = size |
63 | 63 | ||