Skip to content

Commit

Permalink
pre-commit run -a
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Oct 31, 2023
1 parent 3a2f41d commit 0a3cf76
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/test_omega_conf.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
from happypose.pose_estimators.megapose.inference.types import InferenceConfig
import unittest

from omegaconf import OmegaConf

from happypose.pose_estimators.megapose.evaluation.eval_config import (
BOPEvalConfig,
EvalConfig,
FullEvalConfig,
HardwareConfig,
)
from omegaconf import OmegaConf

from happypose.pose_estimators.megapose.inference.types import InferenceConfig

import unittest

class TestOmegaConf(unittest.TestCase):
"""
Expand All @@ -25,5 +24,5 @@ def test_valid_dataclasses(self):
OmegaConf.structured(FullEvalConfig)


if __name__ == '__main__':
unittest.main()
if __name__ == "__main__":
unittest.main()

0 comments on commit 0a3cf76

Please sign in to comment.