From 5b558fbc2e0961b3ca90f7d8bc930c2aea27d34b Mon Sep 17 00:00:00 2001 From: Dimitrios Christidis Date: Fri, 5 Apr 2024 16:03:20 +0200 Subject: [PATCH] Style Guide: Fix indentation #287 --- docs/developer/style_guide.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/developer/style_guide.md b/docs/developer/style_guide.md index 8ef1364f1a6..982c849e0a1 100644 --- a/docs/developer/style_guide.md +++ b/docs/developer/style_guide.md @@ -31,12 +31,12 @@ if TYPE_CHECKING: #### Examples: ```python - # Wrong +# Wrong import rucio from datetime import * import os - # Right +# Right import os from datetime import datetime, timedelta @@ -44,19 +44,19 @@ from rucio.core.did import add_did ``` ```python - # Wrong +# Wrong from packageA import moduleA, moduleB, moduleC, moduleD, moduleE, moduleF, moduleG, ... - # Right +# Right from packageA import ( - moduleA, - moduleB, - moduleC, - moduleD, - moduleE, - moduleF, - moduleG, - ... + moduleA, + moduleB, + moduleC, + moduleD, + moduleE, + moduleF, + moduleG, + ... ) ```