Skip to content

Commit

Permalink
fix-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Oct 25, 2024
1 parent bc8235c commit 540393f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions ctgan/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,13 @@ def _parse_args():
'--generator_dim',
type=str,
default='256,256',
help='Dimension of each generator layer. ' 'Comma separated integers with no whitespaces.',
help='Dimension of each generator layer. Comma separated integers with no whitespaces.',
)
parser.add_argument(
'--discriminator_dim',
type=str,
default='256,256',
help='Dimension of each discriminator layer. '
'Comma separated integers with no whitespaces.',
help='Dimension of each discriminator layer. Comma separated integers with no whitespaces.',
)

parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dev = [
'watchdog>=1.0.1,<5',

# style check
'ruff>=0.4.5,<1',
'ruff>=0.4.5,<0.7.2',

# distribute on PyPI
'twine>=1.10.0,<4',
Expand Down

0 comments on commit 540393f

Please sign in to comment.