Skip to content

Commit

Permalink
update .flake8 config to ignore venv
Browse files Browse the repository at this point in the history
  • Loading branch information
taddes committed Jul 31, 2024
1 parent ca359b9 commit d7af2bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
exclude =
.git,
__pycache__,
venv/
# E203: Whitespace before ':'. Addresses a discrepancy with Black slice formatting.
ignore = E203
max-line-length = 99
3 changes: 1 addition & 2 deletions tools/user_migration/old/dump_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import csv
import math
import os
import random
import re
import time

Expand All @@ -31,7 +30,7 @@
from urlparse import urlparse


MAX_ROWS = 1500000
MAX_ROWS = 1_500_000


class BadDSNException(Exception):
Expand Down
1 change: 1 addition & 0 deletions tools/user_migration/old/migrate_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import argparse
import base64
import json
import logging
import os
import sys
Expand Down

0 comments on commit d7af2bd

Please sign in to comment.