Skip to content

Commit 4d0b486

Browse files
committed
Fix line ending on non-windows setups
1 parent 090a2f8 commit 4d0b486

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

examplescripts/pycorn-bin.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PyCORN - script to extract data from .res (results) files generated
55
by UNICORN Chromatography software supplied with ÄKTA Systems
66
(c)2014-2015 - Yasar L. Ahmed
7-
v0.15c
7+
v0.16
88
'''
99
import argparse
1010
from pycorn import pc_res3
@@ -125,16 +125,6 @@ def xy_data(inp):
125125
return x_data, y_data
126126

127127

128-
def uvdata(inp):
129-
'''
130-
helps in finding the useful data
131-
'''
132-
UV_blocks = [i for i in inp if i.startswith('UV') or i.endswith('nm')]
133-
for i in UV_blocks:
134-
if i.endswith("_0nm"):
135-
UV_blocks.remove(i)
136-
137-
138128
def smartscale(inp):
139129
'''
140130
input is the entire fdata block

pycorn/pycorn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
PyCORN - script to extract data from .res (results) files generated
44
by UNICORN Chromatography software supplied with ÄKTA Systems
55
(c)2014-2015 - Yasar L. Ahmed
6-
v0.14
6+
v0.14b
77
'''
88

99
from __future__ import print_function

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='pycorn',
10-
version='0.15',
10+
version='0.16',
1111
author='Yasar L. Ahmed',
1212
packages=['pycorn'],
1313
extras_require = {'plotting': ["matplotlib"], 'xlsx-output': ['xlsxwriter']},

0 commit comments

Comments
 (0)