Skip to content

Commit

Permalink
Removed tmp debug
Browse files Browse the repository at this point in the history
  • Loading branch information
szczyglis-dev committed Feb 1, 2025
1 parent e802e4f commit 7bd42a1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/pygpt_net/core/command/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,6 @@ def is_enabled(self, cmd: str) -> bool:
}
event = Event(Event.CMD_SYNTAX, data)
self.window.dispatch(event)
print(event.data)
if (event.data and "cmd" in event.data
and isinstance(event.data["cmd"], list)):
for item in event.data["cmd"]:
Expand All @@ -628,7 +627,6 @@ def is_enabled(self, cmd: str) -> bool:
}
event = Event(Event.CMD_SYNTAX_INLINE, data)
self.window.dispatch(event)
print(event.data)
if (event.data and "cmd" in event.data
and isinstance(event.data["cmd"], list)):
for item in event.data["cmd"]:
Expand Down

0 comments on commit 7bd42a1

Please sign in to comment.