Skip to content

Clean up the use of lambdas #5

Description

@AODQ

A lot of the code was written with just the idea that only I would read it. The usage of lambdas to define functions should be replaced with def functions. ei

str = lambda s: "My data: " + str(s.data);

should be

def str(s):
  return "My data: " + str(s.data);

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions