Remove old version of swap_values
This commit is contained in:
parent
adfed84526
commit
e6243d4d38
1 changed files with 1 additions and 11 deletions
|
|
@ -50,16 +50,6 @@ def load_options(path):
|
|||
|
||||
|
||||
|
||||
def swap_values(dict, key1, key2):
|
||||
|
||||
key1_val = dict[key1]
|
||||
dict[key1] = dict[key2]
|
||||
dict[key2] = key1_val
|
||||
|
||||
return dict
|
||||
|
||||
|
||||
|
||||
def ceil(a, roundto=1):
|
||||
|
||||
fac = 1/roundto
|
||||
|
|
@ -195,4 +185,4 @@ def find_neighbours(value, df, colname, start=0, end=-1):
|
|||
|
||||
def isnan(value):
|
||||
|
||||
return value!=value
|
||||
return value!=value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue