diff --git a/evennia/scripts/tests.py b/evennia/scripts/tests.py index c4aec37a41..a97cfb1c47 100644 --- a/evennia/scripts/tests.py +++ b/evennia/scripts/tests.py @@ -144,7 +144,10 @@ class TestExtendedLoopingCall(TestCase): loopcall.__call__.assert_not_called() self.assertEqual(loopcall.interval, 20) loopcall._scheduleFrom.assert_called_with(121) - + +""" +Dummy function used as callback parameter +""" def dummy_func(): return 0