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

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


The following commit(s) were added to refs/heads/main by this push:
     new 1d04e6e  Fix static checks for isort failing in stub files (#20568)
1d04e6e is described below

commit 1d04e6eb70a4ce60534bff6fcc1e9cdd94288651
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Dec 30 00:41:44 2021 +0100

    Fix static checks for isort failing in stub files (#20568)
    
    The change to add pre-commit on isort-ing .pyi files crossed with
    merge of already approved and not isorted files.
    
    Part of #19891
---
 airflow/providers/apache/cassandra/sensors/record.pyi | 2 +-
 airflow/providers/apache/cassandra/sensors/table.pyi  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/providers/apache/cassandra/sensors/record.pyi 
b/airflow/providers/apache/cassandra/sensors/record.pyi
index 6713498..4a9572e 100644
--- a/airflow/providers/apache/cassandra/sensors/record.pyi
+++ b/airflow/providers/apache/cassandra/sensors/record.pyi
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-from typing import Optional, Dict, Any
+from typing import Any, Dict, Optional
 
 from airflow.providers.apache.cassandra.hooks.cassandra import CassandraHook
 
diff --git a/airflow/providers/apache/cassandra/sensors/table.pyi 
b/airflow/providers/apache/cassandra/sensors/table.pyi
index 90b0a7b..9ccfa2a 100644
--- a/airflow/providers/apache/cassandra/sensors/table.pyi
+++ b/airflow/providers/apache/cassandra/sensors/table.pyi
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-from typing import Optional, Any
+from typing import Any, Optional
 
 from airflow.providers.apache.cassandra.hooks.cassandra import CassandraHook
 

Reply via email to