mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Fix pycodestyle E117 issues.
This commit is contained in:
parent
7b8e814a10
commit
3e778d3f8f
40 changed files with 150 additions and 150 deletions
|
@ -448,14 +448,14 @@ class LinuxHardware(Hardware):
|
|||
|
||||
def get_mount_info(self, mount, device, uuids):
|
||||
|
||||
mount_size = get_mount_size(mount)
|
||||
mount_size = get_mount_size(mount)
|
||||
|
||||
# _udevadm_uuid is a fallback for versions of lsblk <= 2.23 that don't have --paths
|
||||
# see _run_lsblk() above
|
||||
# https://github.com/ansible/ansible/issues/36077
|
||||
uuid = uuids.get(device, self._udevadm_uuid(device))
|
||||
# _udevadm_uuid is a fallback for versions of lsblk <= 2.23 that don't have --paths
|
||||
# see _run_lsblk() above
|
||||
# https://github.com/ansible/ansible/issues/36077
|
||||
uuid = uuids.get(device, self._udevadm_uuid(device))
|
||||
|
||||
return mount_size, uuid
|
||||
return mount_size, uuid
|
||||
|
||||
def get_mount_facts(self):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue