Skip to content

Commit

Permalink
Update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandInguva committed Mar 7, 2022
1 parent eedce2f commit cb24183
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions sdks/python/apache_beam/options/pipeline_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,10 @@ def __init__(self, flags=None, **kwargs):
flag names.
Option names: These are defined as dest in the
parser.add_argument() for each flag. Passing flags
like {no_use_public_ips: True}, for which the flag name
defined to a different destination(dest) in parser,
like {no_use_public_ips: True}, for which the dest is
defined to a different flag name in the parser,
would be discarded. Instead, pass the dest of
the flag(dest of no_use_public_ips is use_public_ips),
Eg: {use_public_ips: False} to get the desired behavior.
the flag (dest of no_use_public_ips is use_public_ips).
"""
# Initializing logging configuration in case the user did not set it up.
logging.basicConfig()
Expand Down

0 comments on commit cb24183

Please sign in to comment.