From 37b0c8b51348d6908a8a2e9086923ee8a24789e5 Mon Sep 17 00:00:00 2001
From: DMRobertson
Date: Tue, 17 Jan 2023 12:46:31 +0000
Subject: deploy: b6955673bfab5c8d553e8b43e9c50dd7b1212e2a
---
latest/code_style.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'latest/code_style.html')
diff --git a/latest/code_style.html b/latest/code_style.html
index c40c012932..c352b63481 100644
--- a/latest/code_style.html
+++ b/latest/code_style.html
@@ -155,7 +155,7 @@ errors in code.
- black, a source code formatter;
- isort, which organises each file's imports;
-- flake8, which can spot common errors; and
+- ruff, which can spot common errors; and
- mypy, a type checker.
Install them with:
@@ -167,7 +167,7 @@ errors in code.
It's worth noting that modern IDEs and text editors can run these tools
automatically on save. It may be worth looking into whether this
functionality is supported in your editor for a more convenient
-development workflow. It is not, however, recommended to run flake8
or mypy
+development workflow. It is not, however, recommended to run mypy
on save as they take a while and can be very resource intensive.