Skip to content

Commit

Permalink
update imports for py 3.10 compat (#202)
Browse files Browse the repository at this point in the history
* update imports for py 3.10 compat

fix OpenVoiceOS/ovos-PHAL-plugin-mk1#6

* Update __init__.py
  • Loading branch information
JarbasAl authored Dec 18, 2023
1 parent 3384462 commit f844113
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ovos_utils/enclosure/mark1/faceplate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from ovos_utils.messagebus import get_mycroft_bus
import random
from time import sleep
import collections
from collections.abc import MutableSequence
import copy


class FaceplateGrid(collections.MutableSequence):
class FaceplateGrid(MutableSequence):
encoded = None
str_grid = None
pad_char = "."
Expand Down

0 comments on commit f844113

Please sign in to comment.