- dir = os.getcwd() # get working directory
- initial_dir = os.path.join(dir, 'bitmaps') # set the initial directory for the demo bitmaps
- win = ImageDialog(frame, initial_dir) # open the image browser dialog
+ # get current working directory
+ dir = os.getcwd()
+
+ # set the initial directory for the demo bitmaps
+ initial_dir = os.path.join(dir, 'bitmaps')
+
+ # open the image browser dialog
+ win = ib.ImageDialog(frame, initial_dir)
+