Skip to content

break outer loop when sampling #2

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

break outer loop when sampling #2

wants to merge 1 commit into from

Conversation

jlburkhead
Copy link

This fixes a bug where the break doesnt break out of the outer loop when the csv file has more than the sampleLines (15) number of lines

if actualSampleLines >= sampleLines {
break
if actualSampleLines > sampleLines {
actualSampleLines--
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alternative to avoid this could be to switch up the order:

if actualSampleLines >= sampleLines {
    return
}
actualSampleLines++

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants