Skip to content

Commit

Permalink
Fixing the compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sourabhsparkala committed Sep 1, 2022
1 parent 525f63b commit e78e1b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import com.sap.oss.phosphor.fosstars.model.subject.oss.GitHubProject;
import com.sap.oss.phosphor.fosstars.model.value.ValueHashSet;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Predicate;
Expand Down Expand Up @@ -55,7 +56,7 @@ protected ValueSet fetchValuesFor(GitHubProject project) throws IOException {
LocalRepository repository = GitHubDataFetcher.localRepositoryFor(project);

Visitor visitor = withVisitor();
browse(repository, MATCH_PYLINT_PREDICATE_MAP, visitor);
browse(repository, MATCH_PYLINT_PREDICATE_MAP, Collections.emptyMap(), visitor);

Value<Boolean> runsPylint = RUNS_MYPY_SCANS.value(visitor.runCheck);
Value<Boolean> usesPylintScanChecks = USES_MYPY_SCAN_CHECKS.value(visitor.usesCheck);
Expand Down

0 comments on commit e78e1b7

Please sign in to comment.