File size: 746 Bytes
1e2550f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
💡 **Please ensure formatting, linting, and security checks pass before submitting a pull request**

## Code Formatting

The codebase is formatted using [black](https://github.com/psf/black)

To format the codebase, run the following command:

```bash
black .
```

Please ensure that the code is formatted before submitting a pull request.

## Linting

The codebase is linted using [flake8](https://flake8.pycqa.org/en/latest/)

To view the linting errors, run the following command:

```bash
flake8 .
```

## Security and Vulnerabilities

The codebase is scanned for security vulnerabilities using [bandit](https://github.com/PyCQA/bandit)

To scan the codebase for security vulnerabilities, run the following command:

```bash
bandit -r .
```