Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mknorps committed Jan 3, 2024
1 parent 0ba84f9 commit e455333
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/test_dir_traversal.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from abc import ABC, abstractmethod
from dataclasses import dataclass, field
from pathlib import Path
import sys
from typing import Generic, List, Optional, Tuple, TypeVar, Union

import pytest
Expand Down
3 changes: 2 additions & 1 deletion tests/test_real_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ def unpacked_project_dir(self, cache: pytest.Cache) -> Path:

@pytest.mark.skipif(
sys.platform.startswith("win"),
reason="Real projects test are not supported on Windows due to the test environment complications.",
reason="Real projects test are not supported on Windows"
" due to the test environment complications.",
)
@pytest.mark.parametrize(
"project, experiment",
Expand Down
1 change: 1 addition & 0 deletions tests/test_types.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Verify behavior of our basic types."""

import os
import sys
from dataclasses import FrozenInstanceError
from pathlib import Path

Expand Down

0 comments on commit e455333

Please sign in to comment.