Commit 5d2ae535 authored by Mayank Mittal's avatar Mayank Mittal

fixes order of imports in setup.py

parent acd49eaa
...@@ -31,6 +31,7 @@ extra_standard_library = [ ...@@ -31,6 +31,7 @@ extra_standard_library = [
"hid", "hid",
"yaml", "yaml",
"prettytable", "prettytable",
"toml",
] ]
# Imports from Isaac Sim and Omniverse # Imports from Isaac Sim and Omniverse
known_third_party = [ known_third_party = [
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
"""Installation script for the 'omni.isaac.contrib_envs' python package.""" """Installation script for the 'omni.isaac.contrib_envs' python package."""
import os import os
import toml import toml
from setuptools import setup from setuptools import setup
# Obtain the extension data from the extension.toml file # Obtain the extension data from the extension.toml file
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
"""Installation script for the 'omni.isaac.orbit' python package.""" """Installation script for the 'omni.isaac.orbit' python package."""
import os import os
import toml import toml
from setuptools import setup from setuptools import setup
# Obtain the extension data from the extension.toml file # Obtain the extension data from the extension.toml file
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
import itertools import itertools
import os import os
import toml import toml
from setuptools import setup from setuptools import setup
# Obtain the extension data from the extension.toml file # Obtain the extension data from the extension.toml file
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment