Skip to content

Commit

Permalink
main.py fix matplotlib.MatplotlibDeprecationWarning (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHeroBrine422 committed Jan 15, 2024
1 parent d514529 commit 2d077f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

# pylint: disable=no-member,simplifiable-if-expression,protected-access,line-too-long,use-fstring-for-concatenation,refactoring:missing-module-dosctring,

warnings.filterwarnings("ignore", category=matplotlib.cbook.mplDeprecation)
warnings.filterwarnings("ignore", category=matplotlib.MatplotlibDeprecationWarning)
warnings.filterwarnings("ignore", message="ignoring `maxfev` argument to `Minimizer()`. Use `max_nfev` instead.")
warnings.filterwarnings("ignore", message="DataFrame columns are not unique, some columns will be omitted.")
warnings.filterwarnings("ignore", message="All-NaN axis encountered")
Expand Down

0 comments on commit 2d077f0

Please sign in to comment.