Skip to content

Commit

Permalink
Add missing comma in get_mountpoints() docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenGrohmann authored and philpep committed Jul 21, 2023
1 parent 8d69308 commit dc8f15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testinfra/modules/mountpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_mountpoints(cls):
"""Returns a list of MountPoint instances
>>> host.mount_point.get_mountpoints()
[<MountPoint(path=/proc, device=proc, filesystem=proc, options=rw,nosuid,nodev,noexec,relatime)>
[<MountPoint(path=/proc, device=proc, filesystem=proc, options=rw,nosuid,nodev,noexec,relatime)>,
<MountPoint(path=/, device=/dev/sda1, filesystem=ext4, options=rw,relatime,errors=remount-ro,data=ordered)>]
""" # noqa
mountpoints = []
Expand Down

0 comments on commit dc8f15a

Please sign in to comment.