File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,14 @@ It will create images in the `generated_images` directory.
20
20
### Generate Single Learn Guide Image
21
21
22
22
``` shell
23
- python3 create_requirement_images.py --guide [Learn Guide Name]
23
+ python3 create_requirement_images.py learn --guide [Learn Guide Name]
24
24
# OR
25
- python3 create_requirement_images.py -g [Learn Guide Name]
25
+ python3 create_requirement_images.py learn -g [Learn Guide Name]
26
26
```
27
+
28
+ ### Help Command
29
+ The help command will list all possible commands and arguments.
30
+
31
+ ``` shell
32
+ python3 create_requirement_images.py --help
33
+ ```
Original file line number Diff line number Diff line change @@ -415,6 +415,10 @@ def make_sd_dir(position):
415
415
PADDING + (LINE_SPACING * (7 + project_files_count )),
416
416
)
417
417
make_libraries (final_list_to_render , _libraries_position )
418
+
419
+ if project_files_count == 0 :
420
+ project_files_count = 1
421
+
418
422
_sd_dir_position = (
419
423
76 ,
420
424
PADDING
You can’t perform that action at this time.
0 commit comments