@@ -179,19 +179,19 @@ def get_arg_parser(*, prog: Optional[str] = None) -> argparse.ArgumentParser:
179179 )
180180 input_group .add_argument (
181181 '-p' , '--p' , '--poetry' , action = 'store_true' ,
182- help = 'Build a SBOM based on a Poetry poetry.lock\' s contents. Use with -i to specify absolute path'
182+ help = 'Build a SBOM based on a Poetry poetry.lock\' s contents. Use with -i to specify absolute path '
183183 'to a `poetry.lock` you wish to use, else we\' ll look for one in the current working directory.' ,
184184 dest = 'input_from_poetry'
185185 )
186186 input_group .add_argument (
187187 '-pip' , '--pip' , action = 'store_true' ,
188- help = 'Build a SBOM based on a PipEnv Pipfile.lock\' s contents. Use with -i to specify absolute path'
188+ help = 'Build a SBOM based on a PipEnv Pipfile.lock\' s contents. Use with -i to specify absolute path '
189189 'to a `Pipefile.lock` you wish to use, else we\' ll look for one in the current working directory.' ,
190190 dest = 'input_from_pip'
191191 )
192192 input_group .add_argument (
193193 '-r' , '--r' , '--requirements' , action = 'store_true' ,
194- help = 'Build a SBOM based on a requirements.txt\' s contents. Use with -i to specify absolute path'
194+ help = 'Build a SBOM based on a requirements.txt\' s contents. Use with -i to specify absolute path '
195195 'to a `requirements.txt` you wish to use, else we\' ll look for one in the current working directory.' ,
196196 dest = 'input_from_requirements'
197197 )
0 commit comments