As of now when the --debug flag is used with the set DAP_PORT env var will result in an exception since the port number will default to being a string rather than the required int type. The source of this error can be found here
This PR simply converts the port number from an str into an int
As of now when the
--debug
flag is used with the setDAP_PORT
env var will result in an exception since the port number will default to being a string rather than the required int type. The source of this error can be found hereThis PR simply converts the port number from an str into an int