Skip to content

Commit

Permalink
Do nothing on else
Browse files Browse the repository at this point in the history
  • Loading branch information
ada-af committed Oct 26, 2020
1 parent 42a378d commit e1aed31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dermod/imgloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ def __init__(self, url, fileid, fileform=''):
logging.raiseExceptions = False

def run(self):
print(f"Receiving {self.id}") if self.format == '' else pass
print(f"Receiving {self.id}") if self.format == '' else ''
self.get_raw_image()
print(f"Wiritng {self.id}") if self.format == '' else pass
print(f"Wiritng {self.id}") if self.format == '' else ''
self.writer()
self.readiness = 1
del self.raw_data
Expand Down

0 comments on commit e1aed31

Please sign in to comment.