fixed bug in iwd.py

And fixed a typo in README.md
This commit is contained in:
Pranav Jerry 2021-07-17 13:34:06 +05:30
parent 7b7c3f0b2e
commit b1d970a0f6
No known key found for this signature in database
GPG Key ID: F1DCDC4FED0A0C5B
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ and others which can work on an intranet.
## Uninstalling ## Uninstalling
If you installed naxalnet manually, there is now way to uninstall If you installed naxalnet manually, there is no way to uninstall
than manually removing the files: than manually removing the files:
```sh ```sh

View File

@ -164,7 +164,7 @@ class Device:
""" """
Same as is_adhoc_started(), but for ap Same as is_adhoc_started(), but for ap
""" """
if self.is_powered_on() and self.get_mode == "ap": if self.is_powered_on() and self.get_mode() == "ap":
return self._proxy.Started return self._proxy.Started
return None return None