summaryrefslogtreecommitdiff
path: root/git/db.py
Commit message (Collapse)AuthorAgeFilesLines
* reformat according to 'black' configuration file.Sebastian Thiel2022-05-181-3/+1
|
* Run everything through 'black'Sebastian Thiel2022-05-181-8/+7
| | | | | That way people who use it won't be deterred, while it unifies style everywhere.
* Make types in refs compatible with previousYobmod2021-07-191-1/+1
|
* flake8 and mypy fixesYobmod2021-05-161-6/+6
|
* add initial types to remote.pyyobmod2021-05-031-8/+9
|
* add types to git.compat and git.diffyobmod2021-03-021-2/+3
|
* add types to git.db and git.excyobmod2021-03-011-8/+12
|
* Fix exception causes all over the codebaseRam Rachum2020-06-141-2/+2
|
* updated db.py, removed unused variablesPratik Anurag2019-10-151-1/+1
|
* src: reduce needless deps to `gitdb.util`Kostis Anagnostopoulos2016-10-161-4/+1
|
* src: No PyDev warningsKostis Anagnostopoulos2016-10-041-2/+2
| | | | | | | | + Mark all unused vars and other non-pep8 (PyDev) warnings + test_utils: + enable & fix forgotten IterableList looped path. + unittestize all assertions. + remote: minor fix progress dispatching unknown err-lines
* initial set of adjustments to make (most) imports work.Sebastian Thiel2015-01-041-6/+5
| | | | More to come, especially when it's about strings
* Applied autopep8Sebastian Thiel2014-11-191-10/+10
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* pep8 linting (trailing whitespace)Antoine Musso2014-11-161-5/+5
| | | | W291 trailing whitespace
* pep8 linting (whitespace before/after)Antoine Musso2014-11-161-1/+1
| | | | | | | | | | | | | E201 whitespace after '(' E202 whitespace before ')' E203 whitespace before ':' E225 missing whitespace around operator E226 missing whitespace around arithmetic operator E227 missing whitespace around bitwise or shift operator E228 missing whitespace around modulo operator E231 missing whitespace after ',' E241 multiple spaces after ',' E251 unexpected spaces around keyword / parameter equals
* pep8 linting (blank lines expectations)Antoine Musso2014-11-161-1/+4
| | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
* pep8 linting (whitespaces)Antoine Musso2014-11-161-7/+7
| | | | | | | | | | | W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
* tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-47/+47
| | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+61
adjusted