Skip to content

Commit

Permalink
Whitespace and typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jfreeberg committed Sep 29, 2023
1 parent 96abb0a commit a10ac4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ schema = ""
role = ""
warehouse = ""

[pytest]
[tool.pytest.ini_options]
markers = snowflake_vcr: marks Snowflake-specific vcrpy tests

[tool.pylint]
Expand Down
8 changes: 5 additions & 3 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ def run(snowpark_session: Session) -> DataFrame:
return df2


if __name__ == "__main__":
# This entrypoint is used for local development (`$ python src/procs/app.py`)

def main():
from src.util.local import get_env_var_config

print("Creating session...")
Expand All @@ -46,3 +44,7 @@ def run(snowpark_session: Session) -> DataFrame:

print("Stored procedure complete:")
result.show()


if __name__ == "__main__":
main()

0 comments on commit a10ac4b

Please sign in to comment.