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

Unified Diff: appengine/findit/crash/findit_for_clusterfuzz.py

Issue 2605943002: Removing the mutation in the factories for getting dep repositories (Closed)
Patch Set: rebase Created 3 years, 12 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
Index: appengine/findit/crash/findit_for_clusterfuzz.py
diff --git a/appengine/findit/crash/findit_for_clusterfuzz.py b/appengine/findit/crash/findit_for_clusterfuzz.py
index da2af6d80d52f6fd751f6405c655b44c4659b671..9e401f540be92bc3b157c3d99588339d81b70f8f 100644
--- a/appengine/findit/crash/findit_for_clusterfuzz.py
+++ b/appengine/findit/crash/findit_for_clusterfuzz.py
@@ -15,8 +15,8 @@ class FinditForClusterfuzz(Findit): # pragma: no cover
def _ClientID(cls):
return CrashClient.CLUSTERFUZZ
- def __init__(self, repository):
- super(FinditForClusterfuzz, self).__init__(repository)
+ def __init__(self, get_repository):
+ super(FinditForClusterfuzz, self).__init__(get_repository)
logging.info('Client %s is not supported by findit right now',
self.client_id)
raise NotImplementedError()
« no previous file with comments | « appengine/findit/crash/findit_for_chromecrash.py ('k') | appengine/findit/crash/loglinear/changelist_classifier.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698