Skip to content

Commit 93ec1dd

Browse files
author
Agustín Azzinnari
committed
Fix line length in dataset transform
Also downgrade to v0.1.1 to include in latest release.
1 parent dc7cfd0 commit 93ec1dd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

luminoth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.1.2dev0'
1+
__version__ = '0.1.1'
22

33
__title__ = 'Luminoth'
44
__description__ = 'Computer vision toolkit based on TensorFlow'

luminoth/tools/dataset/transform.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def get_output_subfolder(only_classes, only_images, limit_examples,
2727

2828
@click.command()
2929
@click.option('dataset_reader', '--type', type=click.Choice(READERS.keys()), required=True) # noqa
30-
@click.option('--data-dir', required=True, help='Where to locate the original data.')
31-
@click.option('--output-dir', required=True, help='Where to save the transformed data.')
30+
@click.option('--data-dir', required=True, help='Where to locate the original data.') # noqa
31+
@click.option('--output-dir', required=True, help='Where to save the transformed data.') # noqa
3232
@click.option('splits', '--split', required=True, multiple=True, help='Which splits to transform.') # noqa
3333
@click.option('--only-classes', help='Whitelist of classes.')
3434
@click.option('--only-images', help='Create dataset with specific examples.')

0 commit comments

Comments
 (0)