Skip to content

Commit 03ec58b

Browse files
committed
wrap lines
1 parent 1acb594 commit 03ec58b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Lib/uuid.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -939,12 +939,15 @@ def main():
939939
parser = argparse.ArgumentParser(
940940
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
941941
description="Generate a UUID using the selected UUID function.")
942-
parser.add_argument("-u", "--uuid", choices=uuid_funcs.keys(), default="uuid4",
942+
parser.add_argument("-u", "--uuid",
943+
choices=uuid_funcs.keys(),
944+
default="uuid4",
943945
help="function to generate the UUID")
944-
parser.add_argument("-n", "--namespace", choices=["any UUID", *namespaces.keys()],
946+
parser.add_argument("-n", "--namespace",
947+
choices=["any UUID", *namespaces.keys()],
945948
help="uuid3/uuid5 only: "
946949
"a UUID, or a well-known predefined UUID addressed "
947-
"by namespace name)")
950+
"by namespace name")
948951
parser.add_argument("-N", "--name",
949952
help="uuid3/uuid5 only: "
950953
"name used as part of generating the UUID")

0 commit comments

Comments
 (0)