Closed pacjac closed 6 months ago
Attention: Patch coverage is 44.44444%
with 5 lines
in your changes are missing coverage. Please review.
Project coverage is 56.99%. Comparing base (
26a1127
) to head (89ce75e
).
Files | Patch % | Lines |
---|---|---|
heisskleber/core/types.py | 44.44% | 5 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This PR adds iter to the Source baseclass and aiter to the AsyncSource baseclass. The function is already implemented and does not need to be overridden, as it simply calls self.receive() and yields the result.
Also modifies the Serializable type to be
int | float
, removing the peskystr
from the definition. Should be redone properly in a future iteration.