From 57171c7dc91748ee275d7bfd6fa72887c1608769 Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Tue, 10 Mar 2020 15:06:42 +0100 Subject: [PATCH] [cragr] remove obsolete proxy_browser.py file --- modules/cragr/proxy_browser.py | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 modules/cragr/proxy_browser.py diff --git a/modules/cragr/proxy_browser.py b/modules/cragr/proxy_browser.py deleted file mode 100644 index 3a11ee9340..0000000000 --- a/modules/cragr/proxy_browser.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright(C) 2012-2019 Budget Insight -# -# This file is part of a weboob module. -# -# This weboob module is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This weboob module is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with this weboob module. If not, see . - -# yapf-compatible - -from weboob.browser.switch import SwitchingBrowser - -from .api.browser import CragrAPI -from .regions.browser import CragrRegion - - -class ProxyBrowser(SwitchingBrowser): - BROWSERS = { - 'main': CragrAPI, - 'region': CragrRegion, - } -- GitLab