Skip to content

Commit 3e94a27

Browse files
committed
fix lint in conftest (#8324)
1 parent f6580d8 commit 3e94a27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

composer/airflow_1_samples/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def airflow_database():
2727
# We use separate directory for local db path per session
2828
# by setting AIRFLOW_HOME env var, which is done in noxfile_config.py.
2929

30-
assert('AIRFLOW_HOME' in os.environ)
30+
assert ('AIRFLOW_HOME' in os.environ)
3131

3232
airflow_home = os.environ["AIRFLOW_HOME"]
3333
airflow_db = f"{airflow_home}/airflow.db"
@@ -36,4 +36,4 @@ def airflow_database():
3636
airflow.utils.db.resetdb(rbac=None) # this command will change in Airflow 2.0
3737

3838
# Making sure we are using a data file there.
39-
assert(os.path.isfile(airflow_db))
39+
assert (os.path.isfile(airflow_db))

0 commit comments

Comments
 (0)