Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #45 from kimdwkimdw/feature/add_ruff_toml
Browse files Browse the repository at this point in the history
Add .ruff.toml and remove noqa
  • Loading branch information
StableFluffy authored Aug 2, 2024
2 parents b550af4 + 8c7ebba commit 9dc218f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
line-length = 119

[lint]
extend-select = ["I"]

2 changes: 1 addition & 1 deletion evaluator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import argparse # noqa: I001
import argparse
import json
import os
import re
Expand Down
2 changes: 1 addition & 1 deletion generator-gemini.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import argparse # noqa: I001
import argparse
import os

import google.generativeai as genai
Expand Down
2 changes: 1 addition & 1 deletion generator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import argparse # noqa: I001
import argparse
import os

import pandas as pd
Expand Down
2 changes: 1 addition & 1 deletion score.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import argparse # noqa: I001
import argparse
import glob

import pandas as pd
Expand Down

0 comments on commit 9dc218f

Please sign in to comment.