@@ -83,16 +83,14 @@ def message(self):
8383 """Message describing the operation that acted on the reference"""
8484 return self [4 ]
8585
86- # skipcq: PYL-W0621
8786 @classmethod
88- def new (cls , oldhexsha , newhexsha , actor , time , tz_offset , message ):
87+ def new (cls , oldhexsha , newhexsha , actor , time , tz_offset , message ): # skipcq: PYL-W0621
8988 """:return: New instance of a RefLogEntry"""
9089 if not isinstance (actor , Actor ):
9190 raise ValueError ("Need actor instance, got %s" % actor )
9291 # END check types
9392 return RefLogEntry ((oldhexsha , newhexsha , actor , (time , tz_offset ), message ))
9493
95- # skipcq: PYL-W0621
9694 @classmethod
9795 def from_line (cls , line ):
9896 """:return: New RefLogEntry instance from the given revlog line.
@@ -123,7 +121,7 @@ def from_line(cls, line):
123121 # END handle missing end brace
124122
125123 actor = Actor ._from_string (info [82 :email_end + 1 ])
126- time , tz_offset = parse_date (info [email_end + 2 :])
124+ time , tz_offset = parse_date (info [email_end + 2 :]) # skipcq: PYL-W0621
127125
128126 return RefLogEntry ((oldhexsha , newhexsha , actor , (time , tz_offset ), msg ))
129127
0 commit comments