Skip to content

Commit bcb4c81

Browse files
author
nina.loser
committed
Try to fix lint errors
1 parent 89eb078 commit bcb4c81

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

plugins/modules/vmware_vm_info.py

+11-16
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@
122122
-Tags virtual machine's notes is shown if set to V(true).
123123
default: false
124124
type: bool
125-
show_notes:
126-
description:
127-
-Tags virtual machine's notes is shown if set to V(true).
128-
default: false
129-
type: bool
130125
show_allocated:
131126
description:
132127
- Allocated storage in byte and memory in MB are shown if it set to True.
@@ -136,17 +131,17 @@
136131
description:
137132
- If V(vm_name) is used as an Regex Filter.
138133
- Metacharacters use in the V(vm_name):
139-
- [] -> A set of characters
140-
- \ -> Signals a special sequence (can also be used to escape special characters)
141-
- . -> Any character (except newline character)
142-
- ^ -> Starts with
143-
- $ -> Ends with
144-
- * -> Zero or more occurrences
145-
- + -> One or more occurrences
146-
- ? -> Zero or one occurrences
147-
- {} -> Exactly the specified number of occurrences
148-
- | -> Either or
149-
- () -> Capture and group
134+
- []: A set of characters
135+
- \: Signals a special sequence (can also be used to escape special characters)
136+
- .: Any character (except newline character)
137+
- ^: Starts with
138+
- $: Ends with
139+
- *: Zero or more occurrences
140+
- +: One or more occurrences
141+
- ?: Zero or one occurrences
142+
- {}: Exactly the specified number of occurrences
143+
- |: Either or
144+
- (): Capture and group
150145
- For more: Python RegEx
151146
type: bool
152147
default: False

0 commit comments

Comments
 (0)