You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/06 11:18:44 UTC

[airflow] branch master updated: airflow info fixed for python 3.8+ (#12132)

This is an automated email from the ASF dual-hosted git repository.

kamilbregula pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 24a8370  airflow info fixed for python 3.8+ (#12132)
24a8370 is described below

commit 24a83706646612f17f776a1c76a35c373c5e9990
Author: Mariusz Strzelecki <sz...@gmail.com>
AuthorDate: Fri Nov 6 12:17:23 2020 +0100

    airflow info fixed for python 3.8+ (#12132)
---
 airflow/cli/commands/info_command.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/cli/commands/info_command.py b/airflow/cli/commands/info_command.py
index a60a8c2..9419018 100644
--- a/airflow/cli/commands/info_command.py
+++ b/airflow/cli/commands/info_command.py
@@ -28,9 +28,9 @@ from urllib.parse import urlsplit, urlunsplit
 
 import requests
 import tenacity
-from typing_extensions import Protocol
 
 from airflow import configuration
+from airflow.typing_compat import Protocol
 from airflow.version import version as airflow_version
 
 log = logging.getLogger(__name__)