Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: recipe_engine/depgraph.py

Issue 2846703003: [recipes.py] move run arg parsing to its module. (Closed)
Patch Set: fix nits Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | recipe_engine/run.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/depgraph.py
diff --git a/recipe_engine/depgraph.py b/recipe_engine/depgraph.py
index 91a1f2ffb0d06d18036d55a54d80fa67d8b02622..4ea1f15a5899d3dfab526defda85c574a0462a9e 100644
--- a/recipe_engine/depgraph.py
+++ b/recipe_engine/depgraph.py
@@ -4,11 +4,14 @@
from __future__ import print_function
-import argparse
import sys
from . import loader
+from . import env
+
+import argparse # this is vendored
+
_GRAPH_HEADER = """strict digraph {
concentrate = true;
« no previous file with comments | « no previous file | recipe_engine/run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698