Skip to content

Commit

Permalink
Run fix-lint during latest dependency check workflow (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo authored Oct 29, 2024
1 parent bc8235c commit 7f2d8ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dependency_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
python -m pip install .[dev]
make check-deps OUTPUT_FILEPATH=latest_requirements.txt
make fix-lint
- name: Create pull request
id: cpr
uses: peter-evans/create-pull-request@v4
Expand Down
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

0 comments on commit 7f2d8ad

Please sign in to comment.