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 sys
|
||||
import time
|
||||
import os
|
||||
|
||||
|
||||
@ -74,12 +73,13 @@ def main():
|
||||
sys.exit()
|
||||
if args.agents:
|
||||
# Handle the agents logic
|
||||
from .agents.trip_planner.main import planner_cli
|
||||
if args.agents == 'trip_planner':
|
||||
from .agents.trip_planner.main import planner_cli
|
||||
tripcrew = planner_cli()
|
||||
tripcrew.ask()
|
||||
sys.exit()
|
||||
elif args.agents == 'ApiKeys':
|
||||
from .utils import AgentSetup
|
||||
AgentSetup().run()
|
||||
sys.exit()
|
||||
if args.update:
|
||||
|
@ -5,8 +5,6 @@ import pyperclip
|
||||
import sys
|
||||
import platform
|
||||
from dotenv import load_dotenv
|
||||
from requests.exceptions import HTTPError
|
||||
from tqdm import tqdm
|
||||
import zipfile
|
||||
import tempfile
|
||||
import shutil
|
||||
|
Loading…
Reference in New Issue
Block a user