Skip to content

Commit

Permalink
Remove redundant blank-line and parenthesis (apache#11811)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil authored Oct 24, 2020
1 parent 9c6f9de commit ee9db04
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion airflow/configuration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand Down
2 changes: 1 addition & 1 deletion tests/providers/amazon/aws/transfers/test_s3_to_sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def test_s3_to_sftp_operation(self):
# Clean up after finishing with test
conn.delete_object(Bucket=self.s3_bucket, Key=self.s3_key)
conn.delete_bucket(Bucket=self.s3_bucket)
self.assertFalse((self.s3_hook.check_for_bucket(self.s3_bucket)))
self.assertFalse(self.s3_hook.check_for_bucket(self.s3_bucket))

def delete_remote_resource(self):
# check the remote file content
Expand Down
1 change: 0 additions & 1 deletion tests/test_utils/perf/sql_queries.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand Down

0 comments on commit ee9db04

Please sign in to comment.