aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-07-09 00:09:32 +0300
committerGravatar GitHub <[email protected]>2021-07-09 00:09:32 +0300
commit761aa067d19f669e56c32dc4c24b8242cd23a668 (patch)
tree311e530bd34068e11467b349ff0b43bfd9b63784 /pydis_site/templates
parentWay -> method (diff)
Add missing colon
Co-authored-by: Numerlor <[email protected]>
Diffstat (limited to 'pydis_site/templates')
-rw-r--r--pydis_site/templates/events/pages/code-jams/the-code-style-guide.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/templates/events/pages/code-jams/the-code-style-guide.html b/pydis_site/templates/events/pages/code-jams/the-code-style-guide.html
index fabf5444..5e4a957e 100644
--- a/pydis_site/templates/events/pages/code-jams/the-code-style-guide.html
+++ b/pydis_site/templates/events/pages/code-jams/the-code-style-guide.html
@@ -202,7 +202,7 @@
<p>You should use <b><a href="https://pycqa.github.io/isort/">isort</a></b> imports order specification, what means:</p>
<ul>
<li>
- <b>Group by type:</b> order of import types should be <code>__future__</code> imports, standard library imports,
+ <b>Group by type:</b> order of import types should be: <code>__future__</code> imports, standard library imports,
third-party library imports, and finally project imports.
</li>
<li>