Skip to content

Commit

Permalink
fix typo in process.py
Browse files Browse the repository at this point in the history
  • Loading branch information
touchsky-real authored and wzdnzd committed Feb 2, 2025
1 parent 7793abe commit 39dfa76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subscribe/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def aggregate(args: argparse.Namespace) -> None:

parser.add_argument(
"-e",
"--envrionment",
"--environment",
type=str,
required=False,
default=".env",
Expand Down Expand Up @@ -825,6 +825,6 @@ def aggregate(args: argparse.Namespace) -> None:
)

args = parser.parse_args()
utils.load_dotenv(args.envrionment)
utils.load_dotenv(args.environment)

aggregate(args=args)

0 comments on commit 39dfa76

Please sign in to comment.