We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e19ec64 commit 0da68ddCopy full SHA for 0da68dd
grader_service/convert/converters/base.py
@@ -264,6 +264,8 @@ def matches_allowed_patterns(file_path):
264
"""
265
Check if a file matches any of the allowed glob patterns.
266
267
+ if file_path.endswith(".ipynb"):
268
+ return False
269
return any(fnmatch.fnmatch(file_path, pattern) for pattern in files_patterns)
270
271
def is_ignored(file_path):
0 commit comments