Skip to content

Commit

Permalink
fix typo in permissions_policy examples (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmaaatttttt committed Feb 5, 2023
1 parent 6ba7a37 commit 20055a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -384,18 +384,18 @@ Disable access to Geolocation interface and Microphone using dictionary syntax

.. code:: python
permission_policy = {
permissions_policy = {
'geolocation': '()',
'microphone': '()'
}
talisman = Talisman(app, permission_policy=permission_policy)
talisman = Talisman(app, permissions_policy=permissions_policy)
Disable access to Geolocation interface and Microphone using string syntax

.. code:: python
permission_policy = 'geolocation=(), microphone=()'
talisman = Talisman(app, permission_policy=permission_policy)
permissions_policy = 'geolocation=(), microphone=()'
talisman = Talisman(app, permissions_policy=permissions_policy)
Document Policy
---------------
Expand Down

1 comment on commit 20055a7

@Larsene
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks !

Please sign in to comment.