Skip to content

Commit eab1acb

Browse files
author
Chris Huegle
committed
Adds support for dash, underscore and deleted underscore options.
Fix for issue#4.
1 parent a703cfb commit eab1acb

File tree

3 files changed

+367
-251
lines changed

3 files changed

+367
-251
lines changed

commandr/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__all__ = ['command', 'Run']
16-
17-
from commandr import Run, command
15+
__all__ = ['command', 'Run', 'SetOptionModes',
16+
'UNDERSCORE_MODE', 'DASH_MODE', 'DELETE_MODE']
1817

18+
from commandr import Run, command, SetOptionModes
19+
from commandr import UNDERSCORE_MODE, DASH_MODE, DELETE_MODE

0 commit comments

Comments
 (0)