From ccde72131de7d91a6193b932e90a63371172b9a7 Mon Sep 17 00:00:00 2001 From: "Mustufa Rangwala (OpenERP)" Date: Wed, 7 Sep 2011 16:42:02 +0530 Subject: [PATCH] [REM] Google_map: Remove unused py bzr revid: mra@tinyerp.com-20110907111202-kyvcswl9w34bt3f6 --- addons/google_map/__init__.py | 1 - addons/google_map/google_map.py | 32 -------------------------------- 2 files changed, 33 deletions(-) delete mode 100644 addons/google_map/google_map.py diff --git a/addons/google_map/__init__.py b/addons/google_map/__init__.py index aa250662a11..1631b934faf 100644 --- a/addons/google_map/__init__.py +++ b/addons/google_map/__init__.py @@ -19,7 +19,6 @@ # ############################################################################## -import google_map import wizard # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/google_map/google_map.py b/addons/google_map/google_map.py deleted file mode 100644 index e8e22516db2..00000000000 --- a/addons/google_map/google_map.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program 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 Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from osv import fields,osv,orm - -class res_partner_address(osv.osv): - _description ='Partner Contact' - _name = 'res.partner.address' - _inherit = 'res.partner.address' - _columns = { - } -res_partner_address() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: -