Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ ignore =
exclude =
.git,
.venv,
sublime_lib/vendor,

max-line-length = 99
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ tag-pattern = "v{version}"

[tool.coverage.run]
omit = [
"*/_compat/*",
"*/tests/*",
"*/vendor/*",
]

[tool.coverage.report]
Expand Down
Empty file removed sublime_lib/_compat/__init__.py
Empty file.
4 changes: 0 additions & 4 deletions sublime_lib/_compat/enum.py

This file was deleted.

4 changes: 0 additions & 4 deletions sublime_lib/_compat/pathlib.py

This file was deleted.

6 changes: 0 additions & 6 deletions sublime_lib/_compat/typing.py

This file was deleted.

338 changes: 0 additions & 338 deletions sublime_lib/_compat/typing_stubs.py

This file was deleted.

3 changes: 1 addition & 2 deletions sublime_lib/_util/collections.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from collections.abc import Mapping, Sequence

from .._compat.typing import Callable, Dict, Iterable, TypeVar, Union
from typing import Callable, Dict, Iterable, TypeVar, Union


_V = TypeVar('_V')
Expand Down
5 changes: 2 additions & 3 deletions sublime_lib/_util/enum.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from enum import EnumMeta, Enum, Flag
from functools import partial

from .._compat.enum import EnumMeta, Enum, Flag
from .._compat.typing import Any, Callable, Optional
from typing import Any, Callable, Optional


__all__ = ['ExtensibleConstructorMeta', 'construct_with_alternatives', 'construct_union']
Expand Down
3 changes: 1 addition & 2 deletions sublime_lib/_util/glob.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import re
from functools import lru_cache

from .._compat.typing import Callable
from typing import Callable

__all__ = ['get_glob_matcher']

Expand Down
Loading
Loading