mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-10 07:10:31 +00:00
just a little faster now
This commit is contained in:
parent
b838b3dea2
commit
37efb69283
@ -1,7 +1,6 @@
|
|||||||
from .utils import Standalone, Update, Setup, Alias, AgentSetup
|
from .utils import Standalone, Update, Setup, Alias
|
||||||
import argparse
|
import argparse
|
||||||
import sys
|
import sys
|
||||||
import time
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
@ -74,12 +73,13 @@ def main():
|
|||||||
sys.exit()
|
sys.exit()
|
||||||
if args.agents:
|
if args.agents:
|
||||||
# Handle the agents logic
|
# Handle the agents logic
|
||||||
from .agents.trip_planner.main import planner_cli
|
|
||||||
if args.agents == 'trip_planner':
|
if args.agents == 'trip_planner':
|
||||||
|
from .agents.trip_planner.main import planner_cli
|
||||||
tripcrew = planner_cli()
|
tripcrew = planner_cli()
|
||||||
tripcrew.ask()
|
tripcrew.ask()
|
||||||
sys.exit()
|
sys.exit()
|
||||||
elif args.agents == 'ApiKeys':
|
elif args.agents == 'ApiKeys':
|
||||||
|
from .utils import AgentSetup
|
||||||
AgentSetup().run()
|
AgentSetup().run()
|
||||||
sys.exit()
|
sys.exit()
|
||||||
if args.update:
|
if args.update:
|
||||||
|
@ -5,8 +5,6 @@ import pyperclip
|
|||||||
import sys
|
import sys
|
||||||
import platform
|
import platform
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
from requests.exceptions import HTTPError
|
|
||||||
from tqdm import tqdm
|
|
||||||
import zipfile
|
import zipfile
|
||||||
import tempfile
|
import tempfile
|
||||||
import shutil
|
import shutil
|
||||||
|
Loading…
Reference in New Issue
Block a user