Skip to content

Commit

Permalink
Merge branch 'develop' into codestyle_string_interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
whikernel authored Mar 21, 2024
2 parents 908500b + 9824f87 commit 7554792
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CODESTYLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,13 @@ New files should be prefixed by the following license header, where `${current_y
```
* use string interpolation (f-strings, https://peps.python.org/pep-0498/),
rather than the string `format` method (https://podalirius.net/en/articles/python-format-string-vulnerabilities/)
* prefix names of all private fields, methods and variables with underscore (_).
This allows any code maintainer to immediately spot which code elements can be freely modified
without having to worry about the external context.
Note: private elements are only called within the modules in which they are defined.

## Code
The code should be pretty easy to apprehend. It's not perfect but it will improve over time.
The code should be pretty easy to apprehend. It's not perfect, but it will improve over time.
Some documentation about development is available [here](https://docs.dfir-iris.org/development/).
Here are the main takes :

Expand Down

0 comments on commit 7554792

Please sign in to comment.