Skip to content

Commit

Permalink
make linters happy
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández <[email protected]>
  • Loading branch information
ahcorde committed Dec 27, 2021
1 parent 7d09376 commit 2680b49
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/python_pybind11/src/Material.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
* limitations under the License.
*
*/
#include <limits>
#include <map>
#include <string>

#include "Material.hh"
#include <ignition/math/Material.hh>
#include <ignition/math/MaterialType.hh>
Expand Down Expand Up @@ -94,7 +97,8 @@ void defineMathMaterial(py::module &m, const std::string &typestr)
.value("BRASS", ignition::math::MaterialType::BRASS)
.value("COPPER", ignition::math::MaterialType::COPPER)
.value("TUNGSTEN", ignition::math::MaterialType::TUNGSTEN)
.value("UNKNOWN_MATERIAL", ignition::math::MaterialType::UNKNOWN_MATERIAL)
.value("UNKNOWN_MATERIAL",
ignition::math::MaterialType::UNKNOWN_MATERIAL)
.export_values();
}
} // namespace python
Expand Down

0 comments on commit 2680b49

Please sign in to comment.