Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Fix typo in command_builder 'expecity' -> 'explicitly' #447

Merged
merged 1 commit into from
Mar 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aztk/utils/command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def add_option(self, name: str, value: str = None, enable: bool=None):

:param name: Option name (with the dash(es))
:param value: Value for the option(If null and enable is not provided it won't add the option)
:param enable: To expecity add or ignore the option
:param enable: To explicitly add or ignore the option

Usage:
>>> command.add_option("--id", myId) # => Will only add to the command if myId is not null
Expand Down