mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
Added 'import argparse' to 'cheat'
This commit is contained in:
parent
139ff6c32e
commit
4fe31ec479
2 changed files with 2 additions and 2 deletions
1
cheat
1
cheat
|
@ -19,6 +19,7 @@ cheat.py -- Quick, abridged man pages with examples (main routines)
|
|||
|
||||
import os
|
||||
import sys
|
||||
import argparse
|
||||
import subprocess
|
||||
|
||||
DEFAULT_CHEAT_DIR = os.environ.get('DEFAULT_CHEAT_DIR') or \
|
||||
|
|
3
setup.py
3
setup.py
|
@ -3,8 +3,7 @@
|
|||
from distutils.core import setup
|
||||
import os
|
||||
|
||||
setup(
|
||||
name='cheat',
|
||||
setup(name='cheat',
|
||||
version='1.0',
|
||||
summary='Create and view interactive cheatsheets on the command-line',
|
||||
homepage='',
|
||||
|
|
Loading…
Reference in a new issue