We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6580d8 commit 3e94a27Copy full SHA for 3e94a27
composer/airflow_1_samples/conftest.py
@@ -27,7 +27,7 @@ def airflow_database():
27
# We use separate directory for local db path per session
28
# by setting AIRFLOW_HOME env var, which is done in noxfile_config.py.
29
30
- assert('AIRFLOW_HOME' in os.environ)
+ assert ('AIRFLOW_HOME' in os.environ)
31
32
airflow_home = os.environ["AIRFLOW_HOME"]
33
airflow_db = f"{airflow_home}/airflow.db"
@@ -36,4 +36,4 @@ def airflow_database():
36
airflow.utils.db.resetdb(rbac=None) # this command will change in Airflow 2.0
37
38
# Making sure we are using a data file there.
39
- assert(os.path.isfile(airflow_db))
+ assert (os.path.isfile(airflow_db))
0 commit comments