From 6af7c26d2607bc4de040c53582535b2eebec5ea4 Mon Sep 17 00:00:00 2001 From: Yama Date: Wed, 17 Jan 2024 21:13:13 +0100 Subject: [PATCH] Revert "add `-v` for debug messages" This reverts commit 772965a95c0d9516acac7c828a99bfd4fc43b5a0. --- swayrst/swayrst.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/swayrst/swayrst.py b/swayrst/swayrst.py index b7f4388..783437f 100644 --- a/swayrst/swayrst.py +++ b/swayrst/swayrst.py @@ -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: @@ -46,7 +41,7 @@ appname = sys.argv[0] workspace_mapping = None -debug = parser.parse_args().v +debug = False defaulted = [] couldnt_find = [] touched = []