-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Feature: Import data from kobo #29
base: develop
Are you sure you want to change the base?
Conversation
5554d2b
to
af87097
Compare
202bccf
to
6cd54b3
Compare
from requests.models import PreparedRequest | ||
|
||
|
||
TOKEN = "Token" |
Check notice
Code scanning / Bandit
Possible hardcoded password: 'Token' Note
class Question(Raw[raw_asset.SurveyItem]): | ||
def __init__(self, raw: raw_asset.SurveyItem, in_group: bool, in_roster: bool) -> None: | ||
super().__init__(raw) | ||
assert not (in_group and in_roster), "Cannot be both in group and roster" |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note
No description provided.