Skip to content

Commit f4c1de2

Browse files
authored
Black has changed the default formatting (#215)
* Black has changed the default formatting * Remove *.py from mypy * mypy # type: ignore
1 parent c71bfb4 commit f4c1de2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ branch = true
77
source = ["src/"]
88

99
[tool.mypy]
10-
files = ["*.py", "test/", "src/"]
10+
files = ["test/", "src/"]
1111

1212
[project]
1313
name = "uuid6"

src/uuid6/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Get version
88
try:
9-
from ._version import version as __version__
9+
from ._version import version as __version__ # type: ignore
1010
except ImportError:
1111
__version__ = "0.0.0.dev0"
1212

@@ -31,7 +31,7 @@ def __init__(
3131
int: Optional[int] = None,
3232
version: Optional[int] = None,
3333
*,
34-
is_safe: uuid.SafeUUID = uuid.SafeUUID.unknown
34+
is_safe: uuid.SafeUUID = uuid.SafeUUID.unknown,
3535
) -> None:
3636
r"""Create a UUID."""
3737

0 commit comments

Comments
 (0)