Skip to content

Commit

Permalink
fix(client): use tabSize 4 for python (#52602)
Browse files Browse the repository at this point in the history
  • Loading branch information
gikf committed Dec 19, 2023
1 parent 3719e11 commit 3e412f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/templates/Challenges/classic/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const Editor = (props: EditorProps): JSX.Element => {
parameterHints: {
enabled: false
},
tabSize: 2,
tabSize: props.challengeType !== challengeTypes.python ? 2 : 4,
dragAndDrop: true,
lightbulb: {
enabled: false
Expand Down

0 comments on commit 3e412f5

Please sign in to comment.