An inout port that is never read should be converted into an output port.
inout
output
module fly(inout x); assign x = 1; endmodule
module fly(output x); assign x = 1; endmodule