Why is this an issue?

A given scope contains more than one import statement for the same package and name.

Duplicated imports statements are useless and should be removed.

How to fix it

Code examples

Noncompliant code example

package p;
  int i;
endpackage

module top;
  import p::i;
  import p::i; // Noncompliant
endmodule

Compliant solution

package p;
  int i;
endpackage

module top;
  import p::i;
endmodule