13 lines
202 B
Python
13 lines
202 B
Python
# -*- coding: utf-8 -*-
|
|
from . import helpers
|
|
|
|
def get_hmm():
|
|
"""Get a thought."""
|
|
return 'hmmm...'
|
|
|
|
|
|
def hmm():
|
|
"""Contemplation..."""
|
|
if helpers.get_answer():
|
|
print(get_hmm())
|