Skip to content

Commit

Permalink
refactor: remove unnecessary argument
Browse files Browse the repository at this point in the history
  • Loading branch information
friday committed Nov 15, 2023
1 parent beda21d commit 107c920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion managers/Clipster.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def start():
subprocess.Popen([client, '-d'])

def add(text):
subprocess.run([client, '-c'], input=text, encoding='utf-8')
subprocess.run([client, '-c'], input=text)

def get_history():
# Clipster uses a json log file. However the default config is to defer/collect writes
Expand Down

0 comments on commit 107c920

Please sign in to comment.