Skip to content

Commit d70978e

Browse files
committed
remove unmarshall logic
1 parent fe412ef commit d70978e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ typing:
3737
for lib in $(LIBRARIES); do \
3838
cd ${WORKDIR}/$$lib && \
3939
poetry run mypy --version && \
40-
poetry run mypy --install-types --non-interactive --strict $$(echo $$lib | tr "-" "_"); \
40+
poetry run mypy --install-types --non-interactive --strict $$(echo $$lib | tr "-" "_") && \
41+
poetry run ty version && \
42+
poetry run ty check && \
43+
poetry run pyrefly --version && \
44+
poetry run pyrefly check; \
4145
done
4246

4347
lint:

scaleway-core/scaleway_core/utils/resolve_one_of.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class OneOfPossibility(Generic[T]):
1616
marshal_func: Optional[Callable[[T, T | None], Dict[str, Any]]] = None
1717

1818

19-
2019
def resolve_one_of(
2120
possibilities: List[OneOfPossibility[Any]], is_required: bool = False
2221
) -> SupportsKeysAndGetItem[str, Any]:

0 commit comments

Comments
 (0)