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

Side by Side Diff: appengine/predator/analysis/__init__.py

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 import os
2 import sys
3
4 # Analysis module depends on the first-party libs.
5 # Do not add the third-party libs until needed.
6 _THIS_DIR = os.path.dirname(os.path.realpath(__file__))
7 _FIRST_PARTY_DIR = os.path.join(_THIS_DIR, 'first_party')
8 sys.path.insert(0, _FIRST_PARTY_DIR)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698