Verites/verigraph

View on GitHub
src/library/Category/TypedGraph/Limit.hs

Summary

Maintainability
Test Coverage

Avoid restricted qualification
Open

import qualified Data.Graphs                  as G

Found

import qualified Data.Graphs as G

Perhaps

import qualified Data.Graphs as Graph

Applying this change:

  • may break the code

Use second
Open

  where toList getId = map (id *** getId . fst) . Map.toList

Found

id *** getId . fst

Perhaps

second (getId . fst)

Use second
Open

    toList getId = map (id *** getId . fst) . Map.toList

Found

id *** getId . fst

Perhaps

second (getId . fst)

There are no issues that match your filters.

Category
Status