Why is this an issue?

An inout port that is never read should be converted into an output port.

How to fix it

Code examples

Noncompliant code example

module fly(inout x);
  assign x = 1;
endmodule

Compliant solution

module fly(output x);
  assign x = 1;
endmodule