You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently project has a lot of duplicating code like
if self.dry_run:
log_info ( 'No code execution due to dry_run')
else:
execute something
this can and should be refactored into generic function which will accept function to call as parameter and will replace all this if/else blocks with one-liner
The text was updated successfully, but these errors were encountered:
currently project has a lot of duplicating code like
this can and should be refactored into generic function which will accept function to call as parameter and will replace all this if/else blocks with one-liner
The text was updated successfully, but these errors were encountered: