Skip to content

Commit

Permalink
fix: typo in getenv
Browse files Browse the repository at this point in the history
  • Loading branch information
imathews committed Nov 14, 2024
1 parent d620dae commit a998541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/redivis/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.15.15"
__version__ = "0.15.16"
2 changes: 1 addition & 1 deletion src/redivis/classes/Table.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ def get_table_parents(dataset, project):

if dataset or project:
return dataset, project
elif os.getevn("REDIVIS_NOTEBOOK_JOB_ID") is not None:
elif os.getenv("REDIVIS_NOTEBOOK_JOB_ID") is not None:
return None
elif os.getenv("REDIVIS_DEFAULT_PROJECT") is not None:
return None, User(os.getenv("REDIVIS_DEFAULT_PROJECT").split(".")[0]).project(
Expand Down

0 comments on commit a998541

Please sign in to comment.