Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 3, 2025
1 parent 7985711 commit 1e0c8e7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
}
}
]
}
}
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def main():


if __name__ == "__main__":
assert os.path.dirname(os.path.abspath(__file__)) == os.getcwd(), (
"Please run this script from the root of the repository"
)
assert (
os.path.dirname(os.path.abspath(__file__)) == os.getcwd()
), "Please run this script from the root of the repository"
main()
6 changes: 3 additions & 3 deletions userCode/lib/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ def strict_env(key: str):
LAKEFS_SECRET_ACCESS_KEY = strict_env("LAKEFS_SECRET_ACCESS_KEY")

DAGSTER_YAML_CONFIG = os.path.join(strict_env("DAGSTER_HOME"), "dagster.yaml")
assert os.path.exists(DAGSTER_YAML_CONFIG), (
f"the dagster.yaml file does not exist at {DAGSTER_YAML_CONFIG}"
)
assert os.path.exists(
DAGSTER_YAML_CONFIG
), f"the dagster.yaml file does not exist at {DAGSTER_YAML_CONFIG}"

0 comments on commit 1e0c8e7

Please sign in to comment.