We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rfa.kaltura2/src/rfa/kaltura2/kutils.py
Line 436 in 3b87589
Line 215 in 3b87589
Don't use magic numbers 1,2,3,4,5
Replace those with the actual enums defined by the Kaltura API:
for example,
from KalturaClient.Plugins.Core import KalturaEntryModerationStatus KalturaEntryModerationStatus.PENDING_MODERATION
see events.py - that does it right.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
rfa.kaltura2/src/rfa/kaltura2/kutils.py
Line 436 in 3b87589
rfa.kaltura2/src/rfa/kaltura2/kutils.py
Line 215 in 3b87589
Don't use magic numbers 1,2,3,4,5
Replace those with the actual enums defined by the Kaltura API:
for example,
see events.py - that does it right.
The text was updated successfully, but these errors were encountered: