Skip to content

Commit

Permalink
Pylint fixes
Browse files Browse the repository at this point in the history
Your code has been rated at 9.94/10 (previous run: 9.82/10, +0.12)
  • Loading branch information
NikitaBeloglazov committed Dec 13, 2023
1 parent d919d5a commit c227a03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clipman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
from . import exceptions

def debug_print(message):
if dataclass.debug == True:
""" Prints debug messages if dataclass.debug is True :shrug: """
if dataclass.debug is True:
print(message)

def check_binary_installed(binary_name):
Expand Down

0 comments on commit c227a03

Please sign in to comment.