Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bb7c7e3

Browse files
committed
Revert "fixing conflict"
This reverts commit 65cdf6e, reversing changes made to 323b9ad.
1 parent 65cdf6e commit bb7c7e3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

plotly/check_version.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,15 @@
55
def get_latest():
66
data = urllib2.urlopen('https://raw.githubusercontent.com/plotly/plotly.py/master/plotly/version.py') # it's a file like object and works just like a file
77
version_string = [i for i in data][0]
8-
<<<<<<< HEAD
98
latest_version = re.findall(r'\'.*\'', version_string)[0][1:-1]
10-
=======
11-
latest_version = re.findall(r'\'.*', version_string)[0][1:-1]
12-
>>>>>>> 293645169191f9e9451f689197c7526ab214268f
139
return latest_version
1410

1511
def run_duration(f, **kwargs):
1612
import timeit
1713
start_time = timeit.default_timer()
1814
f(**kwargs)
1915
return (timeit.default_timer() - start_time)
20-
<<<<<<< HEAD
2116

22-
=======
23-
24-
>>>>>>> 293645169191f9e9451f689197c7526ab214268f
2517

2618

2719

0 commit comments

Comments
 (0)