From cbedca33acbd59c2b5a20b961f3457f8691a3108 Mon Sep 17 00:00:00 2001 From: Moritz Makowski Date: Fri, 24 May 2024 10:37:51 +0200 Subject: [PATCH] Update example-usage.md --- docs/pages/example-usage.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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.