Skip to content

Latest commit

History

History
38 lines (27 loc) 路 851 Bytes

fn-global.md

File metadata and controls

38 lines (27 loc) 路 851 Bytes

Functions with global variables

Currently, Soorgeon does not support functions that use variables defined out of its local scope, for example:

z = 1

def my_function(x, y):
    result = x + y + z # z's value is not a function argument or a local variable!
    return result

If you attempt to use soorgeon refactor with a notebook that has a function like that, you'll see the following error:

Looks like the following functions are using global variables, this is unsupported. Please add all missing arguments.

Function 'my_function' uses variables 'z'

To fix it, add the offending variables as arguments:

# add z as argument
def my_function(x, y, z):
    result = x + y + z
    return result

And modify any calls to that function:

# before
my_function(x, y)

# after
my_function(x, y, z)