aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Bluenix <[email protected]>2022-07-14 19:20:28 +0200
committerGravatar GitHub <[email protected]>2022-07-14 19:20:28 +0200
commite8390858bc8a76dcc3b2c46da02a37860a1dfa84 (patch)
tree4a80044a313076db9412d6cfc3daffc9b1ce3aa7
parentUpdate site banner for codejam (diff)
Remove accidental stray parenthesis in new codejam rule
Co-authored-by: Kieran Siek <[email protected]>
-rw-r--r--pydis_site/templates/events/pages/code-jams/9/rules.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/templates/events/pages/code-jams/9/rules.html b/pydis_site/templates/events/pages/code-jams/9/rules.html
index a88c795a..e7a85c70 100644
--- a/pydis_site/templates/events/pages/code-jams/9/rules.html
+++ b/pydis_site/templates/events/pages/code-jams/9/rules.html
@@ -18,7 +18,7 @@
<p>
Exceptions to this rule are made for resources such as databases and files, albeit excluding usage other than for storage.
For example, you may use PostgreSQL as a database but not its `NOTIFY` command.
- Lastly, working with subprocesses (through stdin/stdout or <code>multiprocessing.Pool()</code>/<code>concurrent.futures.ProcessPoolExecutor()(</code>) is also exempted from this rule.
+ Lastly, working with subprocesses (through stdin/stdout or <code>multiprocessing.Pool()</code>/<code>concurrent.futures.ProcessPoolExecutor()</code>) is also exempted from this rule.
</p>
</li>
<li><p>Your solution should be platform agnostic. For example, if you use filepaths in your submission, use <code>pathlib</code> to create platform agnostic Path objects instead of hardcoding the paths.</p></li>