• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

deepset-ai / haystack / 12649295031

07 Jan 2025 09:54AM UTC coverage: 91.016% (+0.006%) from 91.01%
12649295031

Pull #8683

github

web-flow
Merge efd93d76a into 8e3f64717
Pull Request #8683: refactor: improve serialization/deserialization of callables (to handle class methods and static methods)

8561 of 9406 relevant lines covered (91.02%)

0.91 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
haystack/marshal/protocol.py
1
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
2
#
3
# SPDX-License-Identifier: Apache-2.0
4

5
from typing import Any, Dict, Protocol, Union
1✔
6

7
# Ellipsis are needed for the type checker, it's safe to disable module-wide
8
# pylint: disable=unnecessary-ellipsis
9

10

11
class Marshaller(Protocol):
1✔
12
    def marshal(self, dict_: Dict[str, Any]) -> str:
1✔
13
        "Convert a dictionary to its string representation"
14
        ...
×
15

16
    def unmarshal(self, data_: Union[str, bytes, bytearray]) -> Dict[str, Any]:
1✔
17
        """Convert a marshalled object to its dictionary representation"""
18
        ...
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc