File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ pip install -r requirements.txt
10
10
## Running the Script
11
11
The script can be simply run with:
12
12
``` bash
13
- python run.py
13
+ python run.py [-h] --config * path-to-config.yml * --bind * path-to-bind-csv * [--dry-run]
14
14
```
15
15
16
16
## Usage
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ def get_random_alphanumerical():
8
8
Creates a random alphanumerical string with a length of 16 characters.
9
9
:return: A random alphanumerical string with a length of 16 characters.
10
10
"""
11
- return '' .join (random .choices (string .ascii_letters + string .digits , k = 16 ))
11
+ return '' .join (random .choice (string .ascii_uppercase + string .ascii_lowercase + string . digits ) for _ in range ( 16 ))
12
12
13
13
14
14
def lock ():
You can’t perform that action at this time.
0 commit comments