@@ -36,12 +36,12 @@ def db():
3636@click .option (
3737 "--sql" ,
3838 is_flag = True ,
39- help = "Don't emit SQL to database - dump to standard output " " instead" ,
39+ help = "Don't emit SQL to database - dump to standard output instead" ,
4040)
4141@click .option (
4242 "--head" ,
4343 default = "head" ,
44- help = "Specify head revision or <branchname>@head to base new " " revision on" ,
44+ help = "Specify head revision or <branchname>@head to base new revision on" ,
4545)
4646@click .option (
4747 "--splice" ,
@@ -61,7 +61,7 @@ def db():
6161@click .option (
6262 "--rev-id" ,
6363 default = None ,
64- help = "Specify a hardcoded revision id instead of generating " " one" ,
64+ help = "Specify a hardcoded revision id instead of generating one" ,
6565)
6666@click .pass_context
6767def revision (
@@ -102,12 +102,12 @@ def revision(
102102@click .option (
103103 "--sql" ,
104104 is_flag = True ,
105- help = "Don't emit SQL to database - dump to standard output " " instead" ,
105+ help = "Don't emit SQL to database - dump to standard output instead" ,
106106)
107107@click .option (
108108 "--head" ,
109109 default = "head" ,
110- help = "Specify head revision or <branchname>@head to base new " " revision on" ,
110+ help = "Specify head revision or <branchname>@head to base new revision on" ,
111111)
112112@click .option (
113113 "--splice" ,
@@ -127,7 +127,7 @@ def revision(
127127@click .option (
128128 "--rev-id" ,
129129 default = None ,
130- help = "Specify a hardcoded revision id instead of generating " " one" ,
130+ help = "Specify a hardcoded revision id instead of generating one" ,
131131)
132132@click .option (
133133 "-x" ,
@@ -195,7 +195,7 @@ def edit(ctx, directory, revision):
195195@click .option (
196196 "--rev-id" ,
197197 default = None ,
198- help = "Specify a hardcoded revision id instead of generating " " one" ,
198+ help = "Specify a hardcoded revision id instead of generating one" ,
199199)
200200@click .argument ("revisions" , nargs = - 1 )
201201@click .pass_context
@@ -215,12 +215,12 @@ def merge(ctx, directory, message, branch_label, rev_id, revisions):
215215@click .option (
216216 "--sql" ,
217217 is_flag = True ,
218- help = "Don't emit SQL to database - dump to standard output " " instead" ,
218+ help = "Don't emit SQL to database - dump to standard output instead" ,
219219)
220220@click .option (
221221 "--tag" ,
222222 default = None ,
223- help = 'Arbitrary "tag" name - can be used by custom env.py ' " scripts" ,
223+ help = 'Arbitrary "tag" name - can be used by custom env.py scripts' ,
224224)
225225@click .option (
226226 "-x" ,
@@ -246,12 +246,12 @@ def upgrade(ctx, directory, sql, tag, x_arg, revision):
246246@click .option (
247247 "--sql" ,
248248 is_flag = True ,
249- help = "Don't emit SQL to database - dump to standard output " " instead" ,
249+ help = "Don't emit SQL to database - dump to standard output instead" ,
250250)
251251@click .option (
252252 "--tag" ,
253253 default = None ,
254- help = 'Arbitrary "tag" name - can be used by custom env.py ' " scripts" ,
254+ help = 'Arbitrary "tag" name - can be used by custom env.py scripts' ,
255255)
256256@click .option (
257257 "-x" ,
@@ -300,7 +300,7 @@ def show(ctx: click.Context, directory, revision):
300300 "-i" ,
301301 "--indicate-current" ,
302302 is_flag = True ,
303- help = "Indicate current version (Alembic 0.9.9 or greater is " " required)" ,
303+ help = "Indicate current version (Alembic 0.9.9 or greater is required)" ,
304304)
305305@click .pass_context
306306def history (ctx : click .Context , directory , rev_range , verbose , indicate_current ):
@@ -369,12 +369,12 @@ def current(ctx: click.Context, directory, verbose):
369369@click .option (
370370 "--sql" ,
371371 is_flag = True ,
372- help = "Don't emit SQL to database - dump to standard output " " instead" ,
372+ help = "Don't emit SQL to database - dump to standard output instead" ,
373373)
374374@click .option (
375375 "--tag" ,
376376 default = None ,
377- help = 'Arbitrary "tag" name - can be used by custom env.py ' " scripts" ,
377+ help = 'Arbitrary "tag" name - can be used by custom env.py scripts' ,
378378)
379379@click .argument ("revision" , default = "head" )
380380@click .pass_context
@@ -416,7 +416,7 @@ def check(ctx: click.Context, directory):
416416@click .option (
417417 "--package" ,
418418 is_flag = True ,
419- help = "Write empty __init__.py files to the environment and " " version locations" ,
419+ help = "Write empty __init__.py files to the environment and version locations" ,
420420)
421421@click .pass_context
422422def init (ctx : click .Context , directory , multiple , package ):
0 commit comments