~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to contract_enterprise_openerp/model/account_analytic_analysis.py

  • Committer: Moises Lopez
  • Date: 2014-09-29 18:26:50 UTC
  • mto: (543.7.589 70-addons-vauxoo)
  • mto: This revision was merged to the branch mainline in revision 880.
  • Revision ID: moylop260@vauxoo.com-20140929182650-jumkpmwf04vdlolw
[FIX] Fix unused-import with autoflake

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#    You should have received a copy of the GNU Affero General Public License
22
22
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
23
###############################################################################
24
 
import datetime
25
24
import logging
26
 
import time
27
25
 
28
26
from openerp.osv import osv, fields
29
 
import openerp.tools
30
 
from openerp.tools.translate import _
31
27
 
32
 
from openerp.addons.decimal_precision import decimal_precision as dp
33
28
 
34
29
_logger = logging.getLogger(__name__)
35
30