Skip to content

Commit 4b106a7

Browse files
committed
feat: linter
1 parent 0c9650a commit 4b106a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/flagsmith/engine/mappers/environment.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def self.build_features_context(feature_states)
2020
features
2121
end
2222

23-
def self.build_feature_hash(feature_state) # rubocop:disable Metrics/MethodLength
23+
def self.build_feature_hash(feature_state)
2424
feature_hash = {
2525
key: feature_state.django_id&.to_s || feature_state.uuid,
2626
name: feature_state.feature.name,

lib/flagsmith/engine/mappers/identity.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def self.group_by_overrides(identity_overrides)
4444
features_to_identifiers
4545
end
4646

47-
def self.build_overrides_key(identity_features) # rubocop:disable Metrics/MethodLength
47+
def self.build_overrides_key(identity_features)
4848
sorted_features = identity_features.to_a.sort_by { |fs| fs.feature.name }
4949
sorted_features.map do |feature_state|
5050
{

0 commit comments

Comments
 (0)