mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 15:20:16 +00:00
13 lines
250 B
Python
13 lines
250 B
Python
from pythonbrew.basecommand import Command
|
|
from pythonbrew.util import off
|
|
|
|
class OffCommand(Command):
|
|
name = "off"
|
|
usage = "%prog"
|
|
summary = "Disable pythonbrew"
|
|
|
|
def run_command(self, options, args):
|
|
off()
|
|
|
|
OffCommand()
|