Skip to content

Commit 8fb0ba9

Browse files
committed
fixed import bug
1 parent ea85ba1 commit 8fb0ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyttman/tools/pyttmancli/intents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def respond(self, message: Message) -> Reply | ReplyStream:
228228
if complaint := self.complain_app_not_found(app_name):
229229
return Reply(complaint)
230230
else:
231-
app_name = pathlib.Path(app_name)
231+
app_name = Path(app_name)
232232

233233
abilities_parent_catalog = app_name / "abilities"
234234
ability_catalog = abilities_parent_catalog / ability_name

0 commit comments

Comments
 (0)