1
0
mirror of https://github.com/httpie/cli.git synced 2025-07-15 01:34:27 +02:00

Implement support for bash & completion flow generation

This commit is contained in:
Batuhan Taskaya
2022-05-20 10:42:38 +03:00
parent b8e0be241c
commit ee5fc59c51
9 changed files with 218 additions and 54 deletions

View File

@ -1,17 +1,16 @@
from functools import singledispatch
from enum import Enum
from lib2to3.pgen2.pgen import generate_grammar
from functools import singledispatch
from completion_flow import (
Node,
Check,
Suggest,
Variable,
Condition,
Suggestion,
If,
And,
Check,
Condition,
If,
Node,
Not,
generate_flow,
Suggest,
Suggestion,
Variable,
)