Merge pull request #6838 from adityahase/import-fix

fix(import): Import print_function once
This commit is contained in:
Suraj Shetty 2019-01-29 07:22:54 +05:30 committed by GitHub
commit 356d0b77ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 1 additions and 7 deletions

View file

@ -1,5 +1,4 @@
from __future__ import print_function, unicode_literals
from __future__ import print_function
import requests
import json
import frappe

View file

@ -1,5 +1,4 @@
from __future__ import print_function, unicode_literals
from __future__ import print_function
import frappe
import pytz

View file

@ -1,5 +1,4 @@
from __future__ import print_function, unicode_literals
from __future__ import print_function
from subprocess import Popen, call, PIPE
def execute():

View file

@ -1,5 +1,4 @@
from __future__ import print_function, unicode_literals
from __future__ import print_function
from frappe.utils.selenium_testdriver import TestDriver
import unittest, os, frappe, time

View file

@ -1,5 +1,4 @@
from __future__ import print_function, unicode_literals
from __future__ import print_function
from frappe.utils.selenium_testdriver import TestDriver
import unittest
import time, os

View file

@ -1,4 +1,4 @@
from __future__ import unicode_literals
from __future__ import print_funciton, unicode_literals
'''
Check for unused CSS Classes
@ -8,7 +8,6 @@ sUpdate source and target apps below and run from CLI
'''
from __future__ import print_function
import frappe, re, os
source = frappe.get_app_path('frappe_theme', 'public', 'less', 'frappe_theme.less')