graphite-project / carbon

Assigning result of a function call, where the function has no return PYL-E1111
Bug risk
Critical
4 years ago4 years old
Assigning result of a function call, where the function has no return
165
166        self.assertEqual(exists(old_path), False)
167
168        result = database.create(metric, [(60, 60)], 0.5, 'average')169
170        self.assertEqual(exists(old_path), True)
171
Assigning result of a function call, where the function has no return
 73
 74        self.assertEqual(exists(old_path), False)
 75
 76        result = database.create(metric, [(60, 60)], 0.5, 'average') 77
 78        self.assertEqual(exists(old_path), True)
 79