src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py

branch
eric7
changeset 10450
486b86309a33
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10449:cc468bd2abdf 10450:486b86309a33
353 @type tuple of (int, int) 353 @type tuple of (int, int)
354 @param key dictionary key 354 @param key dictionary key
355 @type str 355 @type str
356 """ 356 """
357 Message.__init__(self, filename, loc) 357 Message.__init__(self, filename, loc)
358 self.message_args = (key,) 358 self.message_args = (repr(key),)
359 359
360 360
361 class MultiValueRepeatedKeyVariable(Message): 361 class MultiValueRepeatedKeyVariable(Message):
362 """ 362 """
363 Class defining the multiple used dictionary key variable message. 363 Class defining the multiple used dictionary key variable message.
376 @type tuple of (int, int) 376 @type tuple of (int, int)
377 @param key dictionary key variable 377 @param key dictionary key variable
378 @type str 378 @type str
379 """ 379 """
380 Message.__init__(self, filename, loc) 380 Message.__init__(self, filename, loc)
381 self.message_args = (key,) 381 self.message_args = (repr(key),)
382 382
383 383
384 class LateFutureImport(Message): 384 class LateFutureImport(Message):
385 """ 385 """
386 Class defining the "Late Future Import" message. 386 Class defining the "Late Future Import" message.

eric ide

mercurial