rticommunity / rticonnextdds-examples

This repository includes examples on how to use specific features of RTI Connext DDS.
Other
126 stars 138 forks source link

Redefined variable in linux_static_analysis.py #405

Open ManuelJNunez opened 3 years ago

ManuelJNunez commented 3 years ago

The next lines of code

connextdds_installation_include = Path.home().joinpath(
    "rti_connext_dds-{}".format(rti_connext_dds_version), "include"
)

are unnecessary because the variable is defined here

rti_connext_dds_dir = (
    Path.home()
    .joinpath(
        "rti_connext_dds-{}".format(rti_connext_dds_version), "include"
    )
    .resolve()
)
ManuelJNunez commented 3 years ago

This issue is solved and will be closed once the commits are merged into master.