hi team, I am getting weird additional env arg in ...
# ask-community
j
hi team, I am getting weird additional env arg in launchpad hints with pythonic
dagster.Config
, any idea what may be causing this?
Copy code
... | {
    /* One of the following: */
    env: String
  }?
Copy code
class MyOpConfig(dagster.Config):
  foo: int = pydantic.Field(gt=0)
will show something like this
Copy code
foo: Int | {
    /* One of the following: */
    env: String
  }?
on latest
v1.4.5
now