From fffcc3e1f9467ac322936a60a0095ff0726c2972 Mon Sep 17 00:00:00 2001 From: "M. Kocher" Date: Thu, 25 Jul 2024 09:07:36 -0700 Subject: [PATCH] Remove override useage for different python version compat --- pydantic_cli/examples/simple.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pydantic_cli/examples/simple.py b/pydantic_cli/examples/simple.py index 290c32b..580b7ef 100644 --- a/pydantic_cli/examples/simple.py +++ b/pydantic_cli/examples/simple.py @@ -9,7 +9,6 @@ ``` """ -from typing import override from pydantic_cli import run_and_exit, Cmd @@ -17,7 +16,6 @@ class Options(Cmd): input_file: str max_records: int - @override def run(self) -> None: print(f"Mock example running with {self}")