Skip to content

Commit

Permalink
Remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
Zack Tobar committed Aug 30, 2023
1 parent 532ead3 commit 907e12f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion nautobot_device_lifecycle_mgmt/filters.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Filtering implementation for the Lifecycle Management plugin."""
import datetime
from locale import currency

import django_filters
from django.db.models import Q
Expand Down
5 changes: 0 additions & 5 deletions nautobot_device_lifecycle_mgmt/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -915,11 +915,6 @@ class ProviderLCMFilterForm(BootstrapMixin, forms.ModelForm):

q = forms.CharField(required=False, label="Search")
name = forms.CharField(required=False)
# country = forms.ChoiceField(
# widget=StaticSelect2,
# required=False,
# choices=add_blank_choice(CountryCodes.CHOICES),
# )
country = forms.MultipleChoiceField(required=False, choices=CountryCodes.CHOICES, widget=StaticSelect2Multiple())

class Meta:
Expand Down

0 comments on commit 907e12f

Please sign in to comment.