Python + Appium + Winappdriver + Notepad: self.driver.close_app() doesnt close NotePad

Learning Appium and trying to automate basic windows apps.
Trying Python + Python Appium Library + WinAppDriver to perform a simple automation task:

  1. Launch Notepad
  2. Enter some text.
  3. Close Notepad without saving

When I close notepad using self.driver.close_app() call, it doesn’t close it, since there is unsaved text in the notepad window. How can I perform this task without it prompting me to close the Window OR do I need to automate clicking on Don’t Save button which will close the app?