isar 1.28.1__py3-none-any.whl → 1.28.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of isar might be problematic. Click here for more details.
- isar/state_machine/states/returning_home.py +1 -0
- isar/storage/utilities.py +4 -2
- {isar-1.28.1.dist-info → isar-1.28.3.dist-info}/METADATA +1 -1
- {isar-1.28.1.dist-info → isar-1.28.3.dist-info}/RECORD +8 -8
- {isar-1.28.1.dist-info → isar-1.28.3.dist-info}/WHEEL +1 -1
- {isar-1.28.1.dist-info → isar-1.28.3.dist-info}/entry_points.txt +0 -0
- {isar-1.28.1.dist-info → isar-1.28.3.dist-info}/licenses/LICENSE +0 -0
- {isar-1.28.1.dist-info → isar-1.28.3.dist-info}/top_level.txt +0 -0
|
@@ -115,6 +115,7 @@ class ReturningHome(State):
|
|
|
115
115
|
if self.state_machine.current_task is None:
|
|
116
116
|
if status != TaskStatus.Successful:
|
|
117
117
|
self.state_machine.return_home_failed() # type: ignore
|
|
118
|
+
return True
|
|
118
119
|
self.state_machine.returned_home() # type: ignore
|
|
119
120
|
return True
|
|
120
121
|
|
isar/storage/utilities.py
CHANGED
|
@@ -69,8 +69,10 @@ def get_filename(inspection: Inspection) -> str:
|
|
|
69
69
|
utc_time: str = datetime.now(timezone.utc).strftime("%Y%m%d-%H%M%S")
|
|
70
70
|
tag: str = inspection.metadata.tag_id if inspection.metadata.tag_id else "no-tag"
|
|
71
71
|
inspection_type: str = type(inspection).__name__
|
|
72
|
-
inspection_description: str =
|
|
73
|
-
" ", "-"
|
|
72
|
+
inspection_description: str = (
|
|
73
|
+
inspection.metadata.inspection_description.replace(" ", "-")
|
|
74
|
+
if inspection.metadata.inspection_description
|
|
75
|
+
else "NA"
|
|
74
76
|
)
|
|
75
77
|
return f"{tag}__{inspection_type}__{inspection_description}__{utc_time}"
|
|
76
78
|
|
|
@@ -80,7 +80,7 @@ isar/state_machine/states/home.py,sha256=YKcOuoj_Z4Z61l_74mOnNQl0mKjRnfuJSl2nk1d
|
|
|
80
80
|
isar/state_machine/states/monitor.py,sha256=FLXJEXyD5GJBwffeHF-ykaEe9lXL8XqMN-C61eIVtYQ,9631
|
|
81
81
|
isar/state_machine/states/offline.py,sha256=aqHv8EH68pfq4yTIxOxxDW7VMkPWcQZX3fNgz90_EbE,1503
|
|
82
82
|
isar/state_machine/states/paused.py,sha256=NgEl48GjLvnqGfPipYZZ6Yj8vdTb-fFLAK2tUu8i9j8,1461
|
|
83
|
-
isar/state_machine/states/returning_home.py,sha256=
|
|
83
|
+
isar/state_machine/states/returning_home.py,sha256=m0tjDaIC5Pi6WqjyZbAqCgA5hDP8iVzIvJQFLHFlTm4,7005
|
|
84
84
|
isar/state_machine/states/robot_standing_still.py,sha256=h2a0CTxXIjE8YKT9_8hkU80q0caq4TYCxHaOYB54cKc,3378
|
|
85
85
|
isar/state_machine/states/stopping.py,sha256=Y44kEw-xB9_63eP6utAMY0RegrIz_1nL5cSI3cfaXEg,2838
|
|
86
86
|
isar/state_machine/states/unknown_status.py,sha256=tOwfHW_4bKKkUTpKD7qc5gIwGT_fTXaCNxXcogGw-wo,2416
|
|
@@ -102,8 +102,8 @@ isar/storage/local_storage.py,sha256=Bnmoi5gyN8r-oRh0aHrOdGqaH3JqRScFKMRXYojW5kY
|
|
|
102
102
|
isar/storage/slimm_storage.py,sha256=4YsQ1RBztfx6n3pEblwb5G3ndoQN_IZm7bujRktpTx4,8748
|
|
103
103
|
isar/storage/storage_interface.py,sha256=DYDry4I7aZpDHJhsBF6s8zrgokFAc7fdKJKfA8AvL7o,828
|
|
104
104
|
isar/storage/uploader.py,sha256=XoNnDS7_ILRZMGnQCBpRERmgSbFYPfgKRYk1tNHSFxQ,6868
|
|
105
|
-
isar/storage/utilities.py,sha256=
|
|
106
|
-
isar-1.28.
|
|
105
|
+
isar/storage/utilities.py,sha256=TcNYyF4nj7egEzBvYblr3IWFXLeqlXS6V7DQxgxNzj0,3340
|
|
106
|
+
isar-1.28.3.dist-info/licenses/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
|
|
107
107
|
robot_interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
108
|
robot_interface/robot_interface.py,sha256=Bkk-joyIzRHxv8iZt7FLPFnlE8chlJad9vgjwc-fDkw,8786
|
|
109
109
|
robot_interface/test_robot_interface.py,sha256=FV1urn7SbsMyWBIcTKjsBwAG4IsXeZ6pLHE0mA9EGGs,692
|
|
@@ -127,8 +127,8 @@ robot_interface/telemetry/payloads.py,sha256=75hR-FYwmcbQVqorLzaStOrx_6DI3_CTxFp
|
|
|
127
127
|
robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
128
|
robot_interface/utilities/json_service.py,sha256=qkzVkb60Gi_pto-b5n1vNzCrQze2yqgIJqSLNLYj1Fg,1034
|
|
129
129
|
robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
|
|
130
|
-
isar-1.28.
|
|
131
|
-
isar-1.28.
|
|
132
|
-
isar-1.28.
|
|
133
|
-
isar-1.28.
|
|
134
|
-
isar-1.28.
|
|
130
|
+
isar-1.28.3.dist-info/METADATA,sha256=1yekSYzhrRBGYhypYPbxvoK7WYv7pjPpCCenttU_Uao,30709
|
|
131
|
+
isar-1.28.3.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
132
|
+
isar-1.28.3.dist-info/entry_points.txt,sha256=TFam7uNNw7J0iiDYzsH2gfG0u1eV1wh3JTw_HkhgKLk,49
|
|
133
|
+
isar-1.28.3.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
|
|
134
|
+
isar-1.28.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|