Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 5, 2023
1 parent 142ef67 commit 54d846b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pl_bolts/models/gans/dcgan/dcgan_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

if _TORCHVISION_AVAILABLE:
from torchvision import transforms as transform_lib
from torchvision.datasets import LSUN, MNIST, CIFAR10
from torchvision.datasets import CIFAR10, LSUN, MNIST
else: # pragma: no cover
warn_missing_pkg("torchvision")

Expand All @@ -36,6 +36,7 @@ class DCGAN(LightningModule):
# cifar10
python dcgan_module.py --gpus 1 --dataset cifar10
"""

def __init__(
Expand Down

0 comments on commit 54d846b

Please sign in to comment.