Skip to content

Commit

Permalink
fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
absszero committed Jan 23, 2024
1 parent e575b9d commit c70af9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ env:

jobs:
Lint:
strategy:
fail-fast: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion lib/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def warn(caption, *args):
def exception(caption, ex: Exception):
if is_debug():
logger = get_logger()
logger.exception(caption)
logger.exception(caption)
5 changes: 4 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ def on_hover(self, view, point, hover_zone):
content = '<br/>'.join(map(self.build_link, place.paths))
if place.uris:
content += '<br/><br/>' +\
self.build_link('Open all files above in new window', 'A!!')
self.build_link(
'Open all files above in new window',
'A!!'
)

view.show_popup(
content,
Expand Down

0 comments on commit c70af9e

Please sign in to comment.