Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
laktak committed Aug 25, 2024
1 parent 83ac347 commit bf9e666
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extrakto_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,12 +414,12 @@ def capture(self):
self.copy(PRJ_URL)
else:
return 0

@staticmethod
def _get_wsl_clip_executable():
if shutil.which('clip.exe') is None:
return '/mnt/c/Windows/System32/clip.exe'
return 'clip.exe'

if shutil.which("clip.exe") is None:
return "/mnt/c/Windows/System32/clip.exe"
return "clip.exe"


if __name__ == "__main__":
Expand Down

0 comments on commit bf9e666

Please sign in to comment.