File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
test-data/typecheck/fields Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 37
37
script : ' isort --check --diff'
38
38
39
39
before_install : |
40
- sudo apt update
41
- sudo apt install binutils libproj-dev gdal-bin
40
+ sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable -y
41
+ sudo apt-get update
42
+ sudo apt-get install -y binutils libproj-dev gdal-bin
42
43
pip install -U pip setuptools wheel
43
44
install : |
44
45
pip install -r ./dev-requirements.txt
Original file line number Diff line number Diff line change 99
99
class User(models.Model):
100
100
pass
101
101
class Profile(models.Model):
102
- user = models.OneToOneField(to=User, on_delete=models)
102
+ user = models.OneToOneField(to=User, on_delete=models.CASCADE )
103
103
104
104
- case : test_circular_dependency_in_imports_with_foreign_key
105
105
main : |
You can’t perform that action at this time.
0 commit comments