Skip to content

Commit

Permalink
minimum supported Python version is 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Oct 12, 2024
1 parent 52e2230 commit 55dc8e1
Show file tree
Hide file tree
Showing 4 changed files with 222 additions and 199 deletions.
2 changes: 1 addition & 1 deletion avnie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


# Version information.
__version_info__ = (2024, 8, 9)
__version_info__ = (2024, 10, 12)
__version__ = ".".join(map(str, __version_info__))
3 changes: 2 additions & 1 deletion avnie/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

# Import third-party Python modules.
from dataclasses import dataclass
from typing import Union

import avro
import pyclip
Expand All @@ -25,7 +26,7 @@ class PromptOptions:


# Helper functions for the interactive function.
def _common_prompts() -> PromptOptions | None:
def _common_prompts() -> Union[PromptOptions, None]:
skip_all = not Confirm.ask("Use advanced options?", default=False)

if skip_all:
Expand Down
Loading

0 comments on commit 55dc8e1

Please sign in to comment.