Skip to content

Commit

Permalink
[Fix] Add missing import statement for getenv
Browse files Browse the repository at this point in the history
  • Loading branch information
stormy authored May 29, 2024
1 parent dacb8ca commit 3ee07ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bloomreach_generics.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import json
import jsonlines
import logging
from os import getenv

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -184,4 +185,4 @@ def main(fp_in, fp_out, pid_props, vid_props):
pid_props= args.pid_props
vid_props= args.vid_props

main(fp_in, fp_out, pid_props, vid_props)
main(fp_in, fp_out, pid_props, vid_props)

0 comments on commit 3ee07ee

Please sign in to comment.