Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert sets to sorted lists prior to sampling #2889

Merged
merged 3 commits into from
May 10, 2022

Commits on May 9, 2022

  1. Convert sets to sorted lists prior to sampling

    This is because sampling of sets has been deprecated in Python 3.9. I used
    sorted() instead of list() so that things are deterministic.
    jtraglia committed May 9, 2022
    Configuration menu
    Copy the full SHA
    a7bda48 View commit details
    Browse the repository at this point in the history
  2. Fix linter warnings

    jtraglia committed May 9, 2022
    Configuration menu
    Copy the full SHA
    9dcb2ee View commit details
    Browse the repository at this point in the history
  3. Convert participation_fn from lambda to def

    I felt that the the lambda was a little too complicated.
    jtraglia committed May 9, 2022
    Configuration menu
    Copy the full SHA
    90c1825 View commit details
    Browse the repository at this point in the history