diff --git a/docs/pages/example-usage.md b/docs/pages/example-usage.md index d680e21..57f3b59 100644 --- a/docs/pages/example-usage.md +++ b/docs/pages/example-usage.md @@ -32,9 +32,8 @@ The following code will run a modified code of the [Proffast 2](https://www.imk- ```python import tum_esm_utils -test_data_path = os.path.join("/path/to/a/folder/with/interferograms") detection_results = tum_esm_utils.em27.detect_corrupt_opus_files( - test_data_path + "/path/to/a/folder/with/interferograms" ) assert detection_results == { 'md20220409s0e00a.0199': [ @@ -61,8 +60,6 @@ assert detection_results == { } ``` -The detection result means the file `/path/to/a/folder/with/interferograms/md20220409s0e00a.0199` could not be read. - ## Ring List We have yet to find a simple Python implementation of a ring list - also called [circular buffer](https://en.wikipedia.org/wiki/Circular_buffer). Hence, we implemented a well-tested one ourselves.