Skip to content

Commit

Permalink
Fix syntax typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
dp-rufus committed Feb 7, 2021
1 parent 0b11883 commit 408d882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Each resource exposed by this library should have its own python file under the
directory, and should define a single `class` that inherits from `DialpadResource`.

The class itself should set the `_resource_path` class property to a list of strings such
that `'/api/v2/' + _resource_path.join('/')` corresponds to the API path for that resource.
that `'/api/v2/' + '/'.join(_resource_path)` corresponds to the API path for that resource.

Once the `_resource_path` is defined, the resource class can define instance methods to expose
functionality related to the resource that it represents, and can use the `self.request` helper
Expand Down

0 comments on commit 408d882

Please sign in to comment.