Skip to content

Commit

Permalink
Fixed type issue in Python 3.7, 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Apr 12, 2023
1 parent a9b6db3 commit ddfd3bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bumpversion/cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""bump-my-version Command line interface."""
import logging
from typing import Optional
from typing import List, Optional

import rich_click as click

Expand Down Expand Up @@ -173,7 +173,7 @@ def cli(
current_version: Optional[str],
new_version: Optional[str],
parse: Optional[str],
serialize: Optional[list[str]],
serialize: Optional[List[str]],
search: Optional[str],
replace: Optional[str],
no_configured_files: bool,
Expand Down

0 comments on commit ddfd3bf

Please sign in to comment.