Fix pre-commit isort failure on tests/loggers/*.py (#5425)
* Remove tests.loggers from skipped module in pyproject.toml * Fix pre-commit isort failure on tests/loggers/*.py
This commit is contained in:
parent
6d83d4457d
commit
9515750548
|
@ -86,11 +86,10 @@ skip_glob = [
|
|||
|
||||
|
||||
# todo
|
||||
"tests/loggers/*",
|
||||
"tests/tuner/*",
|
||||
|
||||
|
||||
# todo
|
||||
"tests/tuner/*",
|
||||
"tests/utilities/*",
|
||||
]
|
||||
profile = "black"
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
import os
|
||||
from argparse import Namespace
|
||||
|
||||
import pytest
|
||||
import torch
|
||||
import os
|
||||
|
||||
from pytorch_lightning.core.saving import load_hparams_from_yaml
|
||||
from pytorch_lightning.loggers import CSVLogger
|
||||
|
|
Loading…
Reference in New Issue