Skip to content

Commit 73a239f

Browse files
committed
DR update
1 parent 48c1e52 commit 73a239f

File tree

40 files changed

+46
-46
lines changed

40 files changed

+46
-46
lines changed

typer-cli-python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# RP to-do
1+
# RP To-Do
22

3-
**RP to-do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.
3+
**RP To-Do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.
44

55
## Installation
66

7-
To run **RP to-do**, you need to run the following steps:
7+
To run **RP To-Do**, you need to run the following steps:
88

99
1. Download the application's source code to a `rptodo_project/` directory
1010
2. Create a Python virtual environment and activate it
@@ -75,7 +75,7 @@ Calling `--help` on each command provides specific and useful information about
7575
7676
## Features
7777
78-
**RP to-do** has the following features:
78+
**RP To-Do** has the following features:
7979
8080
| Command | Description |
8181
| ------------------ | ------------------------------------------------------------ |

typer-cli-python/source_code_final/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# RP to-do
1+
# RP To-Do
22

3-
**RP to-do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.
3+
**RP To-Do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.
44

55
## Installation
66

7-
To run **RP to-do**, you need to run the following steps:
7+
To run **RP To-Do**, you need to run the following steps:
88

99
1. Download the application's source code to a `rptodo_project/` directory
1010
2. Create a Python virtual environment and activate it
@@ -75,7 +75,7 @@ Calling `--help` on each command provides specific and useful information about
7575
7676
## Features
7777
78-
**RP to-do** has the following features:
78+
**RP To-Do** has the following features:
7979
8080
| Command | Description |
8181
| ------------------ | ------------------------------------------------------------ |

typer-cli-python/source_code_final/rptodo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Top-level package for RP to-do."""
1+
"""Top-level package for RP To-Do."""
22

33
__app_name__ = "rptodo"
44
__version__ = "0.1.0"

typer-cli-python/source_code_final/rptodo/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""RP to-do entry point script."""
1+
"""RP To-Do entry point script."""
22

33
from rptodo import cli, __app_name__
44

typer-cli-python/source_code_final/rptodo/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This module provides the RP to-do CLI."""
1+
"""This module provides the RP To-Do CLI."""
22

33
from pathlib import Path
44
from typing import List, Optional

typer-cli-python/source_code_final/rptodo/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This module provides the RP to-do config functionality."""
1+
"""This module provides the RP To-Do config functionality."""
22

33
import configparser
44
from pathlib import Path

typer-cli-python/source_code_final/rptodo/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This module provides the RP to-do database functionality."""
1+
"""This module provides the RP To-Do database functionality."""
22

33
import configparser
44
import json

typer-cli-python/source_code_final/rptodo/rptodo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This module provides the RP to-do model-controller."""
1+
"""This module provides the RP To-Do model-controller."""
22

33
from pathlib import Path
44
from typing import Any, Dict, List, NamedTuple

typer-cli-python/source_code_step_2/rptodo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Top-level package for RP to-do."""
1+
"""Top-level package for RP To-Do."""
22

33
__app_name__ = "rptodo"
44
__version__ = "0.1.0"

typer-cli-python/source_code_step_2/rptodo/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""RP to-do entry point script."""
1+
"""RP To-Do entry point script."""
22

33
from rptodo import cli, __app_name__
44

0 commit comments

Comments
 (0)