From 9b3a205303bc3b11aafbdc702b59e22648a4eeda Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Wed, 17 Mar 2021 11:23:08 -0400 Subject: [PATCH] PIP8 alignment Signed-off-by: Adam Harvey --- .../examples/documented-component/docs/code/code-sample.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/techdocs-backend/examples/documented-component/docs/code/code-sample.md b/plugins/techdocs-backend/examples/documented-component/docs/code/code-sample.md index c40474cf48..9f8e1bd739 100644 --- a/plugins/techdocs-backend/examples/documented-component/docs/code/code-sample.md +++ b/plugins/techdocs-backend/examples/documented-component/docs/code/code-sample.md @@ -24,8 +24,8 @@ const DefaultEntityPage = ({ entity }: { entity: Entity }) => ( Here is an example of Python code: ```python -def getUsersInGroup( targetGroup, secure = False ): +def getUsersInGroup(targetGroup, secure=False): if __debug__: - print ('targetGroup=[' + targetGroup + ']') + print('targetGroup=[' + targetGroup + ']') ```