From 5f73c9d9cf3907153d12eba4db61547e7aa13ef8 Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Mon, 17 Nov 2025 16:36:05 -0500 Subject: [PATCH] Remove erroneous whitespace in README The example `import` statements in the README were indented, which meant that if you were to try and copy-and-paste them into an interactive Python prompt it would fail: >>> import pe ... import pe.app ... import pe.connect ... import pe.handler ... import pe.monitor ... File "", line 1 import pe IndentationError: unexpected indent This commit removes the indentation. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1878a0e..3b94556 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,11 @@ Then the modules you require may be imported with the appropriate subset of the following: ```python - import pe - import pe.app - import pe.connect - import pe.handler - import pe.monitor +import pe +import pe.app +import pe.connect +import pe.handler +import pe.monitor ``` The source code is available from the