Say that we are implementing a simple blog with django and that the blog posts are accessible with URLs like /posts/1/, /posts/2/ etc.
When we define the path variables in the urlpatterns array, what is the main difference between using
path('post/<int:pk>/', ..., ...) and path('post/<pk>/', ..., ...)?
Is it just good practice? Are there actual benefits?