Disable pylint no-member errors for 2 dnf constants
Related: rhbz#1653934
This commit is contained in:
		
							parent
							
								
									55bdb8a27a
								
							
						
					
					
						commit
						d72ee7bd89
					
				| @ -94,7 +94,7 @@ class LoraxRpmCallback(dnf.callback.TransactionProgress): | |||||||
|         self._last_ts = None |         self._last_ts = None | ||||||
| 
 | 
 | ||||||
|     def progress(self, package, action, ti_done, ti_total, ts_done, ts_total): |     def progress(self, package, action, ti_done, ti_total, ts_done, ts_total): | ||||||
|         if action == dnf.transaction.PKG_INSTALL: |         if action == dnf.transaction.PKG_INSTALL:  # pylint: disable=no-member | ||||||
|             # do not report same package twice |             # do not report same package twice | ||||||
|             if self._last_ts == ts_done: |             if self._last_ts == ts_done: | ||||||
|                 return |                 return | ||||||
| @ -102,7 +102,7 @@ class LoraxRpmCallback(dnf.callback.TransactionProgress): | |||||||
| 
 | 
 | ||||||
|             msg = '(%d/%d) %s' % (ts_done, ts_total, package) |             msg = '(%d/%d) %s' % (ts_done, ts_total, package) | ||||||
|             logger.info(msg) |             logger.info(msg) | ||||||
|         elif action == dnf.transaction.TRANS_POST: |         elif action == dnf.transaction.TRANS_POST:  # pylint: disable=no-member | ||||||
|             msg = "Performing post-installation setup tasks" |             msg = "Performing post-installation setup tasks" | ||||||
|             logger.info(msg) |             logger.info(msg) | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user