Skip to content

Commit 1643aca

Browse files
authored
Merge pull request #120 from Miyamura80/ai-writing-guard
Add wait skill and AI writing guard
2 parents 777942f + af312aa commit 1643aca

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

common/global_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ class Config(BaseSettings):
189189
default_factory=lambda: os.getenv("GITHUB_ACTIONS") != "true"
190190
)
191191
running_on: str = Field(
192-
default_factory=lambda: "🖥️ local"
193-
if os.getenv("GITHUB_ACTIONS") != "true"
194-
else "☁️ CI"
192+
default_factory=lambda: (
193+
"🖥️ local" if os.getenv("GITHUB_ACTIONS") != "true" else "☁️ CI"
194+
)
195195
)
196196

197197
@classmethod

0 commit comments

Comments
 (0)