Skip to content

Commit

Permalink
Revert "add -v for debug messages"
Browse files Browse the repository at this point in the history
This reverts commit 772965a.
  • Loading branch information
Nama committed Jan 17, 2024
1 parent 772965a commit 6af7c26
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions swayrst/swayrst.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@
import json
import i3ipc
import pickle
import argparse
from time import sleep
from difflib import SequenceMatcher


parser = argparse.ArgumentParser(description='Restore workspaces in sway to displays and move applications to saved workspaces ')
parser.add_argument('-v', action='store_true')

try:
import sh
except ModuleNotFoundError:
Expand Down Expand Up @@ -46,7 +41,7 @@

appname = sys.argv[0]
workspace_mapping = None
debug = parser.parse_args().v
debug = False
defaulted = []
couldnt_find = []
touched = []
Expand Down

0 comments on commit 6af7c26

Please sign in to comment.