[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
64151d44d5
commit
3c8e03cd8a
|
@ -626,6 +626,7 @@ class NodeKeywords(MutableMapping[str, Any]):
|
||||||
def __repr__(self) -> str:
|
def __repr__(self) -> str:
|
||||||
return f"<NodeKeywords for node {self.node}>"
|
return f"<NodeKeywords for node {self.node}>"
|
||||||
|
|
||||||
|
|
||||||
@final
|
@final
|
||||||
@dataclasses.dataclass(frozen=True)
|
@dataclasses.dataclass(frozen=True)
|
||||||
class Test:
|
class Test:
|
||||||
|
@ -690,5 +691,3 @@ class Test:
|
||||||
param_ids_from=param_ids_from,
|
param_ids_from=param_ids_from,
|
||||||
_ispytest=True,
|
_ispytest=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import pytest
|
||||||
def mul():
|
def mul():
|
||||||
assert 24 == (4 * 6)
|
assert 24 == (4 * 6)
|
||||||
|
|
||||||
|
|
||||||
def my_test():
|
def my_test():
|
||||||
print("test_answer")
|
print("test_answer")
|
||||||
assert 5 == 5
|
assert 5 == 5
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue