Skip to content

Commit

Permalink
db_mysql3: Disable CryptographyDeprecationWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
markuslf committed Jul 18, 2022
1 parent bd41a14 commit 9bd217d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion db_mysql3.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
"""Library for accessing MySQL/MariaDB servers.
"""

import warnings
warnings.filterwarnings('ignore', category=UserWarning, module='pymysql')

__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
__version__ = '2022071401'
__version__ = '2022071801'

import sys

Expand Down

0 comments on commit 9bd217d

Please sign in to comment.