Dharam

Results 1 comments of Dharam

this is still a problem with v22.3 actual: ```python self.file_name = inbound_path.split("/")[-1].split(".")[ 0 ] # extract file name from path ``` expected: ```python self.file_name = inbound_path.split("/")[-1].split(".")[0] # extract file name...