From d24b034677406d9a6bb999fdd6a0875d77497750 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 14 Oct 2023 21:20:53 +0200 Subject: _mountinfo: move field docs below the field --- lbup/_mountinfo.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'lbup') diff --git a/lbup/_mountinfo.py b/lbup/_mountinfo.py index d5b1548..763884b 100644 --- a/lbup/_mountinfo.py +++ b/lbup/_mountinfo.py @@ -22,29 +22,29 @@ class NotAbsRoot(Exception): pass class _MountEntry: - "mount ID, bytes" mount_id = None - "parent ID, bytes" + "mount ID, bytes" parent_id = None - "device number, int" + "parent ID, bytes" devnum = None - "root of the mount, bytes" + "device number, int" root = None - "path where the fs is mounted, bytes" + "root of the mount, bytes" mount_point = None - "mount options bytes" + "path where the fs is mounted, bytes" mount_opts = None - "optional fields, list of bytes" + "mount options bytes" opt_fields = None - "filesystem type, bytes or None" + "optional fields, list of bytes" fstype = None - "mount source, bytes or None" + "filesystem type, bytes or None" source = None - "superblock options, bytes or None" + "mount source, bytes or None" super_opts = None + "superblock options, bytes or None" - "raw mountinfo line, bytes" raw_entry = None + "raw mountinfo line, bytes" def __init__(self, line): self.raw_entry = line -- cgit v1.2.3