Skip to content

Commit

Permalink
removed meaningless warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeZ committed Apr 2, 2019
1 parent 2375777 commit 695e79c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/qmflows/packages/cp2k_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from ..parsers.cp2KParser import parse_cp2k_warnings
from ..settings import Settings
from scm import plams
from warnings import warn


# ====================================<>=======================================
Expand Down Expand Up @@ -160,10 +159,7 @@ def fun(xs):
f = funs.get(key)

if f is not None:
return f(settings, value, mol, key)
else:
msg = 'Keyword ' + '"' + key + '"' + ' doesn\'t include anything in the input!'
warn(msg)
f(settings, value, mol, key)


class CP2K_Result(Result):
Expand Down

0 comments on commit 695e79c

Please sign in to comment.