Skip to content

Commit

Permalink
mute output with ; instead of with doctest skip
Browse files Browse the repository at this point in the history
  • Loading branch information
gonlairo committed Oct 30, 2023
1 parent ed72dac commit f6d8501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cebra/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class FileKeyValueDataset:
>>> import tempfile
>>> from pathlib import Path
>>> tmp_file = Path(tempfile.gettempdir(), 'test.jl')
>>> joblib.dump({'foo' : 42}, tmp_file) # doctest: +SKIP
>>> joblib.dump({'foo' : 42}, tmp_file);
>>> data = cebra.io.FileKeyValueDataset(tmp_file)
>>> data.foo
42
Expand Down

0 comments on commit f6d8501

Please sign in to comment.