aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>