From e33e8ca98981634581c7777ccdc582b7ab286f03 Mon Sep 17 00:00:00 2001 From: Adrin Jalali Date: Mon, 16 May 2022 13:21:00 +0200 Subject: [PATCH] DOC fix missing comma in usage example in README.md There's a missing comma from the usage example in the README.md which is fixed in this PR. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a04b44..d23854f 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ from ..util import lazy __getattr__, __dir__, __all__ = lazy.attach( __name__, - submodules=['rank'] + submodules=['rank'], submod_attrs={ '_gaussian': ['gaussian', 'difference_of_gaussians'], 'edges': ['sobel', 'scharr', 'prewitt', 'roberts',