Why is this an issue?

Unused input ports should be removed.

How to fix it

Code examples

Noncompliant code example

module fly(
  input x, // Noncompliant: Input port 'x' is not used
  output y
);
endmodule