harborapi
harborapi copied to clipboard
Replace manual url concatenation with `urllib.parse.urljoin` or similar
Concatenating URLs manually is pretty silly, when there are utility functions for this in the standard library.
https://github.com/pederhan/harborapi/blob/5ce05adc3531f203725222c4e3ffacd03a505582/harborapi/client.py#L3607-L3612
We should replace this with a utility function that all HTTP methods can re-use.