Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions facebook_business/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
# Since python 3
from six.moves import collections_abc
except ImportError:
# Won't work after python 3.8
import collections as collections_abc
# Fixes the issue for python 3.11
import collections.abc as collections_abc

from facebook_business.adobjects.objectparser import ObjectParser
from facebook_business.typechecker import TypeChecker
Expand Down