Skip to content

Commit

Permalink
Add isort back
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas J. Fan <thomasjpfan@gmail.com>
  • Loading branch information
thomasjpfan committed Dec 12, 2023
1 parent c0822ba commit aaf651c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@
# {ref}`single node and gpu tutorial <pytorch_single_node_and_gpu>`
# such as the `Net` model architecture, `Hyperparameters`, and `log_test_predictions`.
# %%
from mnist_classifier.pytorch_single_node_and_gpu import Hyperparameters, Net, log_test_predictions
from torch import distributed as dist
from torch import multiprocessing as mp
from torch import nn, optim
from torchvision import datasets, transforms

from mnist_classifier.pytorch_single_node_and_gpu import Hyperparameters, Net, log_test_predictions

# %% [markdown]
# Let's define some variables to be used later.
#
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.ruff]
line-length = 120
select = ["E", "W", "F"]
select = ["E", "W", "F", "I"]
ignore = [
# Whitespace before '{symbol}'
"E203",
Expand Down

0 comments on commit aaf651c

Please sign in to comment.