<@U06RKAMK0UC> I'm getting this error, why? ```Run...
# ask-ai
s
@ancient-wolf-19325 I'm getting this error, why?
Copy code
Running Execution on Remote.
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /home/nkram/miniconda3/envs/union/lib/python3.10/site-packages/union/_usage.py:36 in             │
│ custom_invoke                                                                                    │
│                                                                                                  │
│    33 │   log_level = get_level_from_cli_verbosity(verbosity)                                    │
│    34 │   logger.setLevel(log_level)                                                             │
│    35 │   try:                                                                                   │
│ ❱  36 │   │   return Group.invoke(self, ctx)                                                     │
│    37 │   except Exception as e:                                                                 │
│    38 │   │   from union._exceptions import UnionRequireConfigException                          │
│    39                                                                                            │
│                                                                                                  │
│ /home/nkram/miniconda3/envs/union/lib/python3.10/concurrent/futures/_base.py:458 in result       │
│                                                                                                  │
│   455 │   │   │   │   if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]:                     │
│   456 │   │   │   │   │   raise CancelledError()                                                 │
│   457 │   │   │   │   elif self._state == FINISHED:                                              │
│ ❱ 458 │   │   │   │   │   return self.__get_result()                                             │
│   459 │   │   │   │   else:                                                                      │
│   460 │   │   │   │   │   raise TimeoutError()                                                   │
│   461 │   │   finally:                                                                           │
│                                                                                                  │
│ /home/nkram/miniconda3/envs/union/lib/python3.10/concurrent/futures/_base.py:403 in __get_result │
│                                                                                                  │
│   400 │   def __get_result(self):                                                                │
│   401 │   │   if self._exception:                                                                │
│   402 │   │   │   try:                                                                           │
│ ❱ 403 │   │   │   │   raise self._exception                                                      │
│   404 │   │   │   finally:                                                                       │
│   405 │   │   │   │   # Break a reference cycle with the exception in self._exception            │
│   406 │   │   │   │   self = None                                                                │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
TypeError: expected string or bytes-like object
j
Reasoning 🤖 🔍 Searched knowledge base: To help you understand why you're seeing this error, I'll look up information about this specific TypeError in the context of the union package and remote execution. • Searching over 10 data sources from the following: File, Github File, Github Issue, Web • Found 68 documents that could be relevant from the following data sources: Github File, Github Issue, Github Pull Request, Web Content. • Filtered down to the top 30 most relevant documents. 🔄 **: To help you figure out exactly why you're seeing this error, could you please share the relevant part of your code or workflow that's causing the problem? This will help me pinpoint the source of the type mismatch. Working...