MCPcopy Create free account
hub / github.com/Open-Bee/DataStudio / IncompleteFormat

Class IncompleteFormat

tests/datasets/test_formatters.py:37–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 """Test that subclass must implement extensions property."""
36
37 class IncompleteFormat(BaseFormat):
38 def load(self, file_path):
39 pass
40
41 def save(self, data, file_path, **kwargs):
42 pass
43
44 with pytest.raises(TypeError):
45 IncompleteFormat()

Calls

no outgoing calls