Skip to content

Commit

Permalink
fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
jesszzzz committed Feb 5, 2025
1 parent 2d2e991 commit d209386
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hydra/_internal/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
import warnings
from typing import Any, Dict, List, Optional, TYPE_CHECKING
from typing import TYPE_CHECKING, Any, Dict, List, Optional

from omegaconf import DictConfig, OmegaConf

Expand Down
4 changes: 2 additions & 2 deletions hydra/experimental/callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
import logging
from typing import Any, List, Optional

from omegaconf import DictConfig

from hydra.core.utils import JobReturn
from hydra.types import TaskFunction

from omegaconf import DictConfig

logger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion hydra/experimental/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path
from typing import Any, List, Optional

from omegaconf import DictConfig, flag_override, OmegaConf
from omegaconf import DictConfig, OmegaConf, flag_override

from hydra.core.global_hydra import GlobalHydra
from hydra.core.utils import JobReturn, JobStatus
Expand Down

0 comments on commit d209386

Please sign in to comment.