Skip to content

Commit

Permalink
chore(lint): fix ci failing
Browse files Browse the repository at this point in the history
  • Loading branch information
eklairs committed Jan 17, 2024
1 parent 79cc80a commit e67a796
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion dooit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
from dooit.ui.tui import Dooit
2 changes: 1 addition & 1 deletion dooit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ def main():
Dooit().run()


if __name__ == '__main__':
if __name__ == "__main__":
main()
2 changes: 1 addition & 1 deletion dooit/ui/widgets/simple_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ async def keypress(self, key: str) -> None:
# await self._insert_text()
# except Exception:
# return
elif key.startswith('events.Paste:'):
elif key.startswith("events.Paste:"):
await self._insert_text(key[13:])

elif len(key) == 1:
Expand Down

0 comments on commit e67a796

Please sign in to comment.